Introduction

Depression is one of the most common mental health conditions worldwide. It can have significant consequences for individuals, communities, and wider society, including inmpacts on wellbeing and employment. One form of depression known to worsen during the winter months is Seasonal Affective Disorder (Rosenthal,M.B(2004)).

The Covid-19 pandemic created major distruptions to daily life, including prolonged periods spent indoors due to lockdowns. Reduced exposure to natural light is a known risk factor for SAD(Rosenthal,M.B(2004)), and the combination of winter daylight shortages and enforced indoor isolation may have contributed to increased levels of depressive symptoms during the pandemic. These changes may be reflected in pattern of antidepressant prescribing, particularly during winter periods.

The aim of this study is to investigate wether the COVID-19 pandemic influenced antidepressant prescribing and whether there are inequalities or geographic differences associated with this trend.

Methods

All data used in this study was obtained from publicly available NHS Scotland and Scottish Government sources.Antidepressant prescribing data were downloaded from the Data by Prescriber Location dataset, focusing specifically on winter periods (December to Februray) for the years 2019-2023, from the Public Health Scotland OpenData portal. Winter population estimates were taken from the National Records of Scotland census release.Socioeconomic information was sourced from the Scottish Index of Multiple Deprivation (SIMD 2020v2) datasets published by the Scottish Government. Spatial analysis was supported by incorporating NHS Scotland Health Board boundary shapefiles, which are publicly available through PHS and used to map regional variation in prescribing.

Antidepressant medications were identified using the BNF item code prefix “0403”, and all prescriptions with codes starting with “0403” were retained for analysis. These filtered data were then processed and summarised to generate visualisations of prescribing patterns.

For the purpose of this study, the COVID-19 period is defined as March 2020 to June 2021, corresponding to the main period of national lockdowns. This places Winter 2019 as pre-COVID, Winter 2020/2021 as during COVID, and Winter 2022 as post-COVID.

Figure1,Figure2,Figure3 are interactive - hover over the elements to see additional details.


##Loading Necessary Packages
library(tidyverse) 
library(here) # directory stucture
library(gt) # tables
library(janitor) # cleaning data
library(ggplot2) # plotting graph
library(sf) # to read in map data 
library(readxl) # to read in map data
library(plotly) # to make interactive
library(viridis) # colour palette for map
library(ggiraph) # make ggplot2 graphs interactive
# Loading multiple data files (18 CSVs) containing counts of medications dispensed in the community
files <- list.files(here("data", "winter_data"), pattern = "csv")
winter_data <- files %>% # Read all downloaded winter prescribing files stored in the 'winter_data' folder
  map_dfr(~read_csv(here("data", "winter_data", .))) %>% 
clean_names()#combine into one dataframe and clean column names
filtered_winter_data <- winter_data %>% 
filter(str_starts(bnf_item_code,"0403")) %>%  #Filter for antidepressants only (BNF item code starts with "0403" 
  mutate(year = as.numeric(substr(paid_date_month,1,4)), month = as.numeric(substr(paid_date_month,5,6))) %>% #Extract year and month from 'paid_date_month' for grouping into winter periods
  mutate(winter_year=case_when(month == 12 ~ year + 1, 
month %in% c(1,2) ~ year) )  #Create 'winter_year' column: December counts belong to the next year, Jan-Feb to current year
filtered_winter_data <- filtered_winter_data %>% 
  unite("healthboards",hbt2014,hbt,sep = "_") #Merge Health Board columns into a single column since they contain the same information
filtered_winter_data$healthboards <- gsub("[NA]","",filtered_winter_data$healthboards) 
    filtered_winter_data$healthboards <-
      gsub("_","",filtered_winter_data$healthboards)#Remove any remaining 'NA' strings and underscores to standardize Health Board codes

Figure 1

#summarise total antidepressant prescriptions for each winter year
winter_years_data <- filtered_winter_data %>% 
  group_by(winter_year) %>% 
  summarise(total_items=sum(number_of_paid_items,na.rm = TRUE))
#plot line graph to visualise overall trend in total prescriptions across winter years
plot <- suppressWarnings( ggplot(winter_years_data,aes(x=winter_year,y=total_items)) + #line connecting total prescriptions per year
  geom_line(linewidth=0.7,colour = "blue") +
  geom_point(aes(text = paste0(
      "<b>Winter Year:</b> ",winter_year, "<br>",
      "<b>Total Items:</b> ",scales::comma(total_items)),
size = 1))+ #points with interactive tooltip showing year and total
  geom_vline(xintercept = 2020, 
linetype = "solid", colour = "brown") + geom_vline(xintercept = 2022, 
linetype = "solid", colour = "brown") + #reference lines to mark COVID-related winters
  scale_x_continuous(breaks=2017:2023) + #ensures all years appear on x-axis
  labs(title="Total Antidepressant Prescriptions During Winter Season",x="Winter Year",y="Total Antidepressant Prescriptions") +
  theme_minimal(base_size = 10))#thiscode suppresses warnings
ggplotly(plot,tooltip="text",height=250) #convert ggplot to interactive plotly object with tooltips

The line graph shows a steady upward trend in winter antidepressant prescribing across all years. Although the COVID-19 period (2020–2022) is highlighted, prescribing patterns do not markedly diverge from pre-pandemic trends, with increases during COVID appearing slightly less steep than earlier years. The y-axis is truncated to improve visibility of year-to-year changes.


#Prepare Population
population <- readxl::read_excel(here("data","population.xlsx"), skip=10) %>% 
  clean_names() %>% 
  select(x2,all_people) %>% 
  filter(!is.na(all_people)) %>% 
  rename(h_bname = "x2",hb_population = "all_people") %>% 
filter(!str_detect(hb_population,"Cells"))

filtered3_winter_data <- filtered_winter_data %>% 
  group_by(healthboards,winter_year,gp_practice) %>% 
  summarise(paid_quantity = sum(paid_quantity,na.rm=TRUE)) 

SIMD <- readxl::read_excel(here("data","SIMD.xlsx")) %>% 
  clean_names() 

combined_pop_simd <- SIMD %>% 
  full_join(filtered3_winter_data,join_by(h_bcode == healthboards)) %>% 
  left_join(population,join_by(h_bname == h_bname))
Figure 2
r #sum antidepressant prescriptions per health board and winter year (from 2019 onwards) hb_prescribing <- filtered_winter_data %>% filter(winter_year >= 2019) %>% group_by(healthboards, winter_year) %>% summarise(total_paid = sum(paid_quantity, na.rm = TRUE)) #clean SIMD data (keep unique health board codes and names) simd_clean <- SIMD %>% select(h_bcode, h_bname) %>% distinct() #combine with prescribing data with SIMD and population data,calculate prescriptions per head combined <- hb_prescribing %>% left_join(simd_clean, join_by(healthboards == h_bcode)) %>% left_join(population, by = "h_bname") %>% mutate(quantity_per_head = total_paid / hb_population) %>% filter(!is.na(h_bname)) #read and clean NHS health board shapefile NHS_healthboards <- st_read(here("data","Week6_NHS_HealthBoards_2019.shp"),quiet = TRUE) %>% clean_names() %>% rename(h_bname = hb_name) #join spatial data with prescribing data, fill missing value with 0 retry_mapped_data <- NHS_healthboards %>% left_join(combined, by = "h_bname") %>% st_as_sf() %>% mutate(quantity_per_head = replace_na(quantity_per_head, 0)) #plot interactive map of antidepressant prescriptions per head plot_map <- retry_mapped_data %>% ggplot() + geom_sf_interactive(aes(fill = quantity_per_head, tooltip = paste0(h_bname, "\nWinter Year: ", winter_year, "\nItems per Head: ", round(quantity_per_head,2))), colour = "white", size = 0.1) + scale_fill_viridis_c(option = "mako", direction = -1, name = "Items per Head") + #blueish colour palette labs(title="Antidepressant Prescriptions per Head", subtitle="By Health Board and Winter Year") + facet_wrap(~winter_year) + # separate maps per year theme_void(base_size = 8) + theme(strip.text = element_text(size=10, face="bold"), plot.title = element_text(face="bold", size=12), plot.subtitle = element_text(size=8)) #convert to interactive map interactive_map <- girafe(ggobj = plot_map) interactive_map
{=html} <div class="girafe html-widget html-fill-item" id="htmlwidget-08a2ba8a388fdc27c45d" style="width:672px;height:480px;"></div> <script type="application/json" data-for="htmlwidget-08a2ba8a388fdc27c45d">{"x":{"html":"<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<svg xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' class='ggiraph-svg' role='graphics-document' id='svg_52553b2cf052ba37' viewBox='0 0 504 360'>\n <defs id='svg_52553b2cf052ba37_defs'>\n <clipPath id='svg_52553b2cf052ba37_c1'>\n <rect x='0' y='0' width='504' height='360'/>\n <\/clipPath>\n <clipPath id='svg_52553b2cf052ba37_c2'>\n <rect x='61.77' y='0' width='380.47' height='360'/>\n <\/clipPath>\n <clipPath id='svg_52553b2cf052ba37_c3'>\n <rect x='61.77' y='36.19' width='104.04' height='155.21'/>\n <\/clipPath>\n <clipPath id='svg_52553b2cf052ba37_c4'>\n <rect x='61.77' y='204.79' width='104.04' height='155.21'/>\n <\/clipPath>\n <clipPath id='svg_52553b2cf052ba37_c5'>\n <rect x='169.79' y='36.19' width='104.04' height='155.21'/>\n <\/clipPath>\n <clipPath id='svg_52553b2cf052ba37_c6'>\n <rect x='169.79' y='204.79' width='104.04' height='155.21'/>\n <\/clipPath>\n <clipPath id='svg_52553b2cf052ba37_c7'>\n <rect x='277.82' y='36.19' width='104.04' height='155.21'/>\n <\/clipPath>\n <clipPath id='svg_52553b2cf052ba37_c8'>\n <rect x='61.77' y='195.38' width='104.04' height='9.42'/>\n <\/clipPath>\n <clipPath id='svg_52553b2cf052ba37_c9'>\n <rect x='169.79' y='195.38' width='104.04' height='9.42'/>\n <\/clipPath>\n <clipPath id='svg_52553b2cf052ba37_c10'>\n <rect x='61.77' y='26.77' width='104.04' height='9.42'/>\n <\/clipPath>\n <clipPath id='svg_52553b2cf052ba37_c11'>\n <rect x='169.79' y='26.77' width='104.04' height='9.42'/>\n <\/clipPath>\n <clipPath id='svg_52553b2cf052ba37_c12'>\n <rect x='277.82' y='26.77' width='104.04' height='9.42'/>\n <\/clipPath>\n <\/defs>\n <g id='svg_52553b2cf052ba37_rootg' class='ggiraph-svg-rootg'>\n <g clip-path='url(#svg_52553b2cf052ba37_c1)'>\n <rect x='0' y='0' width='504' height='360' fill='#FFFFFF' fill-opacity='1' stroke='#FFFFFF' stroke-opacity='1' stroke-width='0.75' stroke-linejoin='round' stroke-linecap='round' class='ggiraph-svg-bg'/>\n <\/g>\n <g clip-path='url(#svg_52553b2cf052ba37_c2)'>\n <rect x='61.77' y='0' width='380.47' height='360' fill='#000000' fill-opacity='0' stroke='none'/>\n <\/g>\n <g clip-path='url(#svg_52553b2cf052ba37_c3)'>\n <path id='svg_52553b2cf052ba37_e1' d='M 104.970601 159.366879 L 106.237508 160.399682 L 106.603070 162.009798 L 106.262959 162.631428 L 107.119985 163.329104 L 106.536582 163.797885 L 107.128934 164.310940 L 107.017032 165.564418 L 106.596077 165.925694 L 104.746595 165.857377 L 103.530910 164.226757 L 103.737881 163.076604 L 103.162989 161.390956 L 103.602177 160.287194 L 104.970601 159.366879 Z ' fill='#36284F' fill-opacity='1' fill-rule='evenodd' stroke='#FFFFFF' stroke-opacity='1' stroke-width='0.21' stroke-linejoin='round' stroke-linecap='butt' title='Ayrshire and Arran&amp;lt;br/&amp;gt;Winter Year: 2019&amp;lt;br/&amp;gt;Items per Head: 18.4'/>\n <path id='svg_52553b2cf052ba37_e2' d='M 109.163320 159.245099 L 108.919209 159.813819 L 108.769025 159.533797 L 109.163320 159.245099 Z ' fill='#36284F' fill-opacity='1' fill-rule='evenodd' stroke='#FFFFFF' stroke-opacity='1' stroke-width='0.21' stroke-linejoin='round' stroke-linecap='butt' title='Ayrshire and Arran&amp;lt;br/&amp;gt;Winter Year: 2019&amp;lt;br/&amp;gt;Items per Head: 18.4'/>\n <path id='svg_52553b2cf052ba37_e3' d='M 109.661612 157.940416 L 109.651275 158.858700 L 109.063812 159.077300 L 109.320003 158.117609 L 109.661612 157.940416 Z ' fill='#36284F' fill-opacity='1' fill-rule='evenodd' stroke='#FFFFFF' stroke-opacity='1' stroke-width='0.21' stroke-linejoin='round' stroke-linecap='butt' title='Ayrshire and Arran&amp;lt;br/&amp;gt;Winter Year: 2019&amp;lt;br/&amp;gt;Items per Head: 18.4'/>\n <path id='svg_52553b2cf052ba37_e4' d='M 111.098821 155.797800 L 111.678820 156.727344 L 111.248840 156.938067 L 112.019546 157.402993 L 112.029802 157.761685 L 112.475243 157.810393 L 112.752456 158.827323 L 113.118983 158.467995 L 113.327593 158.808229 L 113.915487 158.328414 L 114.414785 159.235850 L 114.912156 158.841925 L 115.353681 159.125454 L 115.207722 159.539333 L 115.590143 159.495158 L 116.067496 160.001778 L 116.282650 159.794889 L 117.023085 160.612867 L 118.022256 160.856548 L 118.512222 162.338547 L 118.896222 162.579583 L 117.990878 163.526190 L 118.214830 163.799464 L 119.225895 163.323157 L 120.077608 163.466819 L 120.637181 162.917193 L 121.660037 163.752398 L 121.656962 164.101245 L 120.750181 165.202547 L 121.242897 165.865378 L 120.831293 166.240376 L 121.014125 166.485143 L 119.850888 167.011860 L 119.605115 167.987078 L 119.875703 168.401346 L 119.441335 169.568582 L 119.057008 169.918251 L 118.329020 169.108025 L 117.042671 169.244242 L 116.235767 170.415581 L 115.355650 172.996359 L 115.109692 173.119901 L 114.922205 172.350549 L 114.606785 172.759077 L 113.482923 172.602187 L 112.157261 173.547523 L 112.164335 174.133344 L 112.577991 174.435639 L 112.492572 175.001877 L 111.413831 175.277099 L 111.078210 175.040124 L 110.438451 175.386203 L 110.277870 175.074989 L 109.195948 175.156406 L 109.083358 174.649953 L 108.717692 174.512545 L 108.007589 175.731976 L 107.116191 176.010857 L 107.006512 174.776550 L 107.892413 172.702924 L 109.670431 170.864735 L 110.042913 169.547176 L 109.923587 168.696811 L 110.896094 167.864430 L 111.334867 166.516199 L 112.619776 165.916455 L 113.017404 164.862532 L 112.233060 163.678126 L 112.604247 163.558170 L 112.338698 162.573533 L 111.358725 161.774237 L 110.550068 161.562772 L 110.328821 160.859114 L 109.544879 160.078419 L 109.588395 159.372544 L 110.269498 158.396789 L 109.883841 157.365873 L 109.910522 156.086024 L 111.098821 155.797800 Z ' fill='#36284F' fill-opacity='1' fill-rule='evenodd' stroke='#FFFFFF' stroke-opacity='1' stroke-width='0.21' stroke-linejoin='round' stroke-linecap='butt' title='Ayrshire and Arran&amp;lt;br/&amp;gt;Winter Year: 2019&amp;lt;br/&amp;gt;Items per Head: 18.4'/>\n <path id='svg_52553b2cf052ba37_e5' d='M 135.764575 174.282584 L 135.179284 172.784199 L 135.731372 171.360402 L 134.980250 171.342335 L 135.464044 170.755815 L 135.293414 170.278583 L 134.467130 170.113183 L 134.019431 170.590312 L 133.407461 170.525567 L 132.666696 168.686721 L 132.341843 168.495379 L 131.722387 168.780751 L 131.176350 168.101514 L 130.198838 168.856059 L 129.851036 168.714325 L 130.074433 167.678939 L 130.833757 166.877162 L 129.933950 166.512727 L 129.413037 167.238314 L 127.879315 167.407202 L 127.051185 166.669412 L 127.272574 165.419013 L 127.747343 164.802633 L 127.744678 163.776085 L 127.231885 162.652306 L 127.858459 162.550974 L 127.822302 161.806047 L 128.995937 160.427819 L 128.454269 160.106454 L 128.084195 158.954455 L 128.669504 158.134835 L 129.403603 157.841360 L 129.700771 158.557698 L 130.355009 158.494144 L 130.603099 158.977158 L 131.761865 158.395170 L 132.476482 160.492174 L 132.931562 160.231821 L 132.788927 159.887280 L 133.159000 159.376211 L 134.768746 158.048618 L 135.076435 158.641250 L 135.813815 157.944949 L 136.199064 158.096793 L 137.016633 157.498051 L 137.491402 157.871099 L 138.403207 157.461237 L 139.226517 157.879404 L 139.532092 157.495691 L 139.870686 157.644480 L 140.160777 156.946682 L 139.686212 156.431921 L 139.890066 155.991194 L 140.527058 155.986786 L 141.008493 156.619367 L 142.344430 155.206379 L 142.790613 155.545096 L 144.131328 155.524771 L 145.233636 155.888858 L 145.300123 156.462662 L 146.010125 156.886940 L 146.570723 158.299108 L 145.890170 158.723326 L 145.895524 159.431028 L 145.482813 159.961458 L 144.723406 160.414921 L 144.842377 160.707433 L 143.792550 161.934245 L 143.972081 162.188405 L 143.050680 162.047821 L 142.657841 162.385553 L 143.012226 162.462335 L 143.263495 163.572005 L 143.888673 164.137709 L 144.387540 165.973480 L 144.851462 166.131866 L 143.995768 167.041312 L 143.615481 166.937148 L 142.639198 167.497315 L 142.609974 168.433360 L 142.069803 168.841908 L 140.815918 168.707065 L 140.226979 169.426233 L 139.721898 169.540875 L 138.567398 170.850358 L 139.025185 171.149146 L 138.760052 171.681707 L 138.297752 171.725739 L 137.809242 172.824950 L 136.204910 173.603921 L 135.764575 174.282584 Z ' fill='#3B3C6D' fill-opacity='1' fill-rule='evenodd' stroke='#FFFFFF' stroke-opacity='1' stroke-width='0.21' stroke-linejoin='round' stroke-linecap='butt' title='Borders&amp;lt;br/&amp;gt;Winter Year: 2019&amp;lt;br/&amp;gt;Items per Head: 17.06'/>\n <path id='svg_52553b2cf052ba37_e6' d='M 121.391788 166.010149 L 123.314963 166.370604 L 124.206875 167.980002 L 124.754101 168.260782 L 124.730147 169.175436 L 125.585963 169.935582 L 125.919224 169.829819 L 126.074062 169.153697 L 126.517967 169.098838 L 126.467107 167.871203 L 126.867841 167.494157 L 127.424541 167.203347 L 129.413037 167.238314 L 129.933950 166.512727 L 130.833757 166.877162 L 130.074433 167.678939 L 129.827922 168.688381 L 130.198838 168.856059 L 131.176350 168.101514 L 131.722387 168.780751 L 132.341843 168.495379 L 132.666696 168.686721 L 133.407461 170.525567 L 134.019431 170.590312 L 134.467130 170.113183 L 135.293414 170.278583 L 135.464044 170.755815 L 134.980250 171.342335 L 135.731372 171.360402 L 135.179284 172.784199 L 135.776612 174.269069 L 134.437043 175.613273 L 133.228422 175.515795 L 133.551183 175.893048 L 133.299606 176.755119 L 131.923444 177.786645 L 130.019082 177.496458 L 129.052062 177.759981 L 128.423814 178.407708 L 127.814407 178.525528 L 127.930694 178.265620 L 127.569331 178.372946 L 127.722983 177.875295 L 127.374792 178.598516 L 126.625267 178.845089 L 125.507621 180.122416 L 124.727173 179.882570 L 123.961389 180.117289 L 124.125559 179.782592 L 123.864003 179.755869 L 120.904159 181.734254 L 119.988262 181.684937 L 119.536117 180.985094 L 119.390784 181.765326 L 118.942039 181.342531 L 118.606210 181.463779 L 117.397053 180.114180 L 116.392522 179.801158 L 116.579618 180.101832 L 115.577662 179.189880 L 116.143070 180.892220 L 115.773714 182.208162 L 115.977034 182.903787 L 115.355063 183.650695 L 113.437644 182.625219 L 112.694745 181.368876 L 111.286395 180.181800 L 110.489250 180.003057 L 109.857140 179.426660 L 109.227326 179.537311 L 108.090771 180.543064 L 108.636171 182.831208 L 109.129809 183.280527 L 108.929770 184.245775 L 109.240042 184.337345 L 108.319419 184.157200 L 107.770696 183.644715 L 107.700844 183.075299 L 108.026436 182.848394 L 107.906728 182.187510 L 107.483988 182.032385 L 107.393889 181.157266 L 105.553573 179.072734 L 105.116313 177.774552 L 105.423490 175.870553 L 106.415711 175.526569 L 107.005293 176.646160 L 106.646735 176.800982 L 106.656515 177.399172 L 107.193364 178.103506 L 107.676491 177.668468 L 107.116191 176.010857 L 108.007589 175.731976 L 108.580389 174.548742 L 109.003990 174.568840 L 109.195948 175.156406 L 110.277870 175.074989 L 110.438451 175.386203 L 111.078210 175.040124 L 111.413831 175.277099 L 112.492572 175.001877 L 112.230373 173.425293 L 113.482923 172.602187 L 114.606785 172.759077 L 114.916872 172.350549 L 115.109692 173.119901 L 115.355650 172.996359 L 116.235767 170.415581 L 117.034058 169.252445 L 118.329020 169.108025 L 119.132068 169.901435 L 119.875703 168.401346 L 119.605115 167.987078 L 119.850888 167.011860 L 121.391788 166.010149 Z ' fill='#3A3462' fill-opacity='1' fill-rule='evenodd' stroke='#FFFFFF' stroke-opacity='1' stroke-width='0.21' stroke-linejoin='round' stroke-linecap='butt' title='Dumfries and Galloway&amp;lt;br/&amp;gt;Winter Year: 2019&amp;lt;br/&amp;gt;Items per Head: 17.57'/>\n <path id='svg_52553b2cf052ba37_e7' d='M 117.554562 141.297123 L 117.982367 142.671187 L 119.806180 141.925193 L 120.374468 142.443748 L 120.479779 142.972660 L 120.026338 142.988861 L 119.691948 143.412567 L 119.167548 143.103503 L 119.186415 144.728898 L 118.625511 144.763455 L 118.625203 146.024004 L 119.230919 146.614441 L 120.177280 147.191343 L 120.612878 146.984003 L 121.118451 147.474317 L 121.532271 147.353463 L 122.326396 148.447790 L 122.834391 148.322997 L 123.172636 148.780848 L 123.509486 148.527055 L 123.628230 149.223420 L 124.347562 148.748854 L 124.891650 149.406251 L 125.780792 149.437835 L 126.410771 149.065034 L 126.970014 149.314189 L 126.709167 149.817282 L 126.007800 150.104441 L 126.240570 150.759765 L 125.782946 150.936836 L 126.224144 151.233940 L 125.126143 151.343290 L 124.701988 152.095047 L 125.258854 152.831832 L 127.799209 153.665685 L 127.661353 153.926326 L 127.254219 154.104359 L 126.531687 153.835247 L 125.638526 154.987984 L 124.714785 155.247005 L 124.328284 155.814167 L 123.637273 156.080284 L 123.800910 155.868431 L 122.608428 155.080826 L 123.178316 154.610075 L 122.213334 154.513912 L 122.102835 154.050462 L 121.594923 154.028190 L 121.570580 153.456334 L 121.035864 153.396368 L 121.178746 152.982487 L 120.205170 152.966409 L 119.677490 153.435025 L 119.358072 152.875864 L 118.892058 153.321882 L 117.717194 152.898322 L 117.904661 154.312766 L 117.153233 154.450172 L 116.716915 153.928683 L 116.100106 154.114572 L 115.694347 153.351967 L 115.398922 153.382729 L 115.076529 152.335488 L 115.385427 152.034158 L 113.910729 151.664534 L 113.962370 150.848833 L 113.340185 150.563849 L 112.700590 148.760934 L 112.748107 147.064703 L 113.221441 146.929964 L 112.959550 146.538253 L 113.280712 146.000215 L 111.668094 145.895129 L 111.719817 145.437361 L 110.842056 144.791039 L 111.427675 143.740085 L 112.432688 143.400261 L 112.547433 142.825206 L 113.313423 142.844380 L 114.164644 142.020659 L 115.082272 141.887151 L 115.359136 141.476674 L 115.733928 141.725544 L 117.172900 140.998112 L 117.554562 141.297123 Z ' fill='#3A3665' fill-opacity='1' fill-rule='evenodd' stroke='#FFFFFF' stroke-opacity='1' stroke-width='0.21' stroke-linejoin='round' stroke-linecap='butt' title='Forth Valley&amp;lt;br/&amp;gt;Winter Year: 2019&amp;lt;br/&amp;gt;Items per Head: 17.42'/>\n <path id='svg_52553b2cf052ba37_e8' d='M 130.570655 114.420277 L 131.387730 114.465395 L 132.621496 115.322955 L 134.413952 115.901374 L 136.626297 114.954768 L 136.899940 115.283762 L 137.316486 115.108970 L 137.931596 115.527527 L 138.265534 115.311203 L 139.976510 115.533309 L 140.742806 115.939724 L 142.748673 115.851703 L 143.367083 115.254948 L 144.648182 115.831604 L 145.553115 115.155115 L 146.951174 115.212825 L 147.163621 115.658165 L 147.722803 115.524122 L 148.490966 116.704463 L 149.222295 117.146439 L 149.395880 119.087129 L 149.893331 119.686140 L 149.570406 119.702525 L 149.525390 120.132915 L 149.812672 120.440684 L 148.754827 121.876172 L 148.736082 122.323111 L 147.314152 123.833043 L 146.482947 125.645372 L 146.089452 127.072879 L 146.449456 127.100812 L 146.772853 128.319258 L 146.507105 128.805225 L 146.089964 128.804385 L 144.448266 131.903307 L 144.543897 133.250361 L 144.090702 134.311486 L 143.077298 135.751874 L 141.621999 136.797522 L 141.200411 136.915399 L 140.352798 136.048939 L 139.275614 136.080932 L 138.608147 134.731643 L 138.735442 133.741108 L 138.422177 133.068022 L 137.455923 132.036961 L 136.714954 131.979025 L 136.611182 131.633664 L 135.875339 131.400687 L 135.100634 131.846950 L 134.201649 131.697546 L 133.487956 132.013992 L 132.993908 133.604829 L 130.967370 132.652521 L 130.950655 133.138366 L 129.872323 133.854313 L 129.130226 133.575400 L 128.675247 133.879436 L 127.785900 133.415843 L 127.492731 133.595374 L 127.237198 132.517678 L 126.086675 132.458102 L 125.641644 132.877908 L 125.273516 132.411137 L 124.735991 132.637858 L 124.542290 132.405189 L 125.214146 131.050608 L 125.126267 130.027648 L 125.447736 129.603125 L 125.244087 129.151632 L 125.678763 129.100874 L 126.447418 128.276744 L 126.905474 128.373337 L 127.946726 127.138834 L 128.990769 126.941852 L 129.293268 125.887925 L 128.878157 125.524105 L 129.079058 124.567756 L 128.539071 124.009660 L 129.914878 122.121350 L 129.596588 121.319163 L 128.886689 121.080856 L 128.507795 120.450017 L 126.557180 121.147466 L 126.060014 120.950728 L 126.227384 119.036289 L 125.846153 118.834487 L 125.991558 117.957999 L 125.390928 116.404425 L 126.995486 115.650352 L 128.262249 115.783450 L 128.688372 115.388950 L 128.682180 114.875770 L 130.570655 114.420277 Z ' fill='#3A7BA3' fill-opacity='1' fill-rule='evenodd' stroke='#FFFFFF' stroke-opacity='1' stroke-width='0.21' stroke-linejoin='round' stroke-linecap='butt' title='Grampian&amp;lt;br/&amp;gt;Winter Year: 2019&amp;lt;br/&amp;gt;Items per Head: 13.36'/>\n <path id='svg_52553b2cf052ba37_e9' d='M 108.299965 108.625097 L 108.239539 108.401838 L 106.846711 107.842266 L 106.278996 106.684217 L 105.581526 106.536824 L 105.691922 106.098908 L 105.169328 105.510602 L 105.613334 104.855831 L 106.378893 105.781068 L 106.635064 105.486977 L 107.062151 105.885866 L 107.505235 105.046662 L 107.099784 104.629417 L 107.594344 104.622034 L 107.159873 104.239143 L 107.881667 104.035844 L 107.059075 103.820875 L 107.445043 103.567595 L 107.041171 103.671553 L 107.149004 103.350616 L 106.008428 101.939330 L 106.387834 101.274652 L 107.164694 102.208709 L 107.970367 101.697740 L 107.529948 101.493068 L 107.755622 101.254307 L 107.982671 101.707381 L 108.719435 101.678464 L 108.963383 102.129237 L 108.913752 101.526905 L 109.423490 101.753831 L 109.296440 101.370940 L 109.599452 101.309517 L 110.201988 101.877189 L 110.806065 101.711994 L 111.628779 102.673981 L 110.951059 101.812280 L 111.822255 101.722762 L 110.215422 101.627704 L 109.598221 101.034295 L 109.305463 101.120942 L 109.397957 100.150176 L 108.999684 100.177555 L 108.733279 99.422846 L 109.131081 99.392697 L 108.890783 99.175206 L 109.345249 98.040476 L 110.784120 98.925454 L 110.189786 98.312521 L 110.664659 98.162706 L 109.914564 98.198391 L 109.686408 97.997716 L 110.192042 98.014328 L 109.660156 97.688962 L 110.201066 97.177686 L 110.692413 97.281972 L 110.158614 97.058841 L 110.436625 96.923978 L 109.622421 96.288237 L 109.927996 95.402377 L 110.610721 95.035685 L 111.036579 94.345578 L 111.189059 93.247558 L 111.780009 93.624399 L 112.734901 93.553153 L 113.347363 94.018571 L 113.367974 94.796763 L 113.736511 95.203958 L 113.236660 95.699769 L 113.670987 95.338596 L 113.390943 95.972141 L 113.823467 95.161956 L 113.401916 94.712371 L 113.975742 94.387621 L 113.722565 93.931615 L 114.021578 93.839327 L 114.366858 94.695165 L 115.335654 95.131461 L 114.045060 97.363124 L 115.140208 96.684151 L 115.444758 95.829259 L 115.731466 95.770503 L 115.684399 96.094781 L 116.220798 94.506980 L 117.186333 94.608497 L 117.691661 95.297825 L 117.920124 95.108080 L 118.090343 95.833874 L 118.488821 95.468107 L 118.261077 96.249272 L 118.058811 96.340725 L 118.081566 96.515881 L 118.855819 95.591669 L 119.509320 95.441855 L 120.127239 95.864636 L 120.252853 95.612075 L 120.560131 95.743554 L 120.569811 95.314292 L 121.020585 95.564803 L 121.634095 94.931914 L 122.271086 95.305679 L 122.937096 94.238627 L 123.084285 95.116080 L 123.925151 94.905334 L 124.171785 95.234905 L 125.763956 95.130948 L 127.309798 93.855858 L 128.708061 93.899418 L 128.527094 94.226813 L 128.817944 94.472382 L 129.610553 94.154870 L 130.664727 94.567459 L 130.887695 94.101426 L 130.168014 93.526637 L 130.617558 92.814112 L 131.411726 93.483938 L 132.854041 93.125431 L 133.174219 93.632830 L 134.808390 93.552722 L 134.564729 94.623529 L 134.212415 94.722975 L 134.277017 95.352768 L 133.506823 96.349045 L 133.612483 97.265813 L 134.472954 97.456355 L 133.707354 99.753995 L 132.318320 101.241901 L 130.263153 102.114984 L 128.801887 104.212892 L 126.324634 106.219476 L 125.169991 106.774660 L 124.663843 107.954487 L 122.958650 108.690637 L 122.521616 110.761350 L 122.581994 111.173857 L 122.647005 110.924270 L 123.147718 111.147298 L 121.291316 111.406483 L 120.083741 110.800789 L 119.215805 111.078863 L 118.575285 110.589490 L 119.124439 111.117069 L 120.361321 111.033046 L 120.775674 111.684393 L 120.985946 111.464891 L 122.270061 111.764909 L 122.065797 111.918825 L 123.371976 111.285627 L 124.340488 111.960868 L 124.931231 111.235176 L 125.444373 111.096253 L 122.869418 114.960222 L 122.115755 114.944062 L 122.049493 114.417571 L 121.758683 114.329178 L 120.573892 115.091231 L 119.192649 115.203247 L 117.536022 117.098778 L 119.902835 115.321089 L 120.627849 115.286204 L 121.104649 115.649181 L 122.090222 115.173756 L 122.619216 115.347523 L 121.256514 116.906040 L 121.361272 117.671968 L 120.416550 117.804533 L 119.541150 119.293813 L 117.554541 119.252365 L 118.661093 119.358661 L 117.824658 119.575270 L 118.931762 119.645901 L 119.695803 119.322115 L 120.254370 119.508762 L 121.845352 118.064725 L 121.524129 117.475414 L 122.142375 117.017195 L 124.071765 117.373898 L 125.387338 116.434264 L 125.991558 117.957999 L 125.846153 118.834487 L 126.227384 119.036289 L 126.060014 120.950728 L 126.557180 121.147466 L 128.506668 120.449710 L 128.765690 120.982927 L 129.700257 121.470105 L 129.837664 122.450920 L 128.513333 124.179778 L 129.079058 124.567756 L 128.878157 125.524105 L 129.293268 125.887925 L 129.179651 126.547824 L 128.988206 126.943800 L 127.912847 127.164840 L 126.863431 128.402564 L 126.447418 128.276744 L 125.678763 129.100874 L 125.244087 129.151632 L 125.447736 129.603125 L 125.126267 130.027648 L 125.214146 131.050608 L 124.514194 132.339562 L 123.344495 132.607709 L 122.661873 132.032038 L 122.417414 133.117755 L 121.721768 133.337911 L 121.582209 133.042857 L 120.619543 133.168000 L 119.844530 132.755883 L 119.503270 133.687682 L 118.181811 134.079291 L 117.828452 134.694851 L 117.287542 134.485973 L 116.394504 135.789283 L 115.435222 135.036622 L 115.078273 135.775030 L 114.527724 136.039689 L 114.443230 137.560696 L 113.603822 137.949945 L 112.852187 137.878269 L 112.847779 138.661074 L 113.490308 138.744134 L 113.935237 138.413539 L 113.837823 139.137075 L 114.743370 140.325230 L 114.248093 140.216124 L 113.008769 140.751189 L 113.529170 141.500055 L 113.079422 142.138994 L 113.661758 142.493173 L 113.313423 142.844380 L 112.543845 142.827666 L 112.432688 143.400261 L 111.427675 143.740085 L 110.841441 144.794422 L 111.719817 145.437361 L 111.668094 145.895129 L 113.280712 146.000215 L 112.959550 146.538253 L 113.221441 146.929964 L 112.748107 147.064703 L 112.700076 148.752505 L 113.340185 150.563849 L 113.976398 150.911671 L 113.505277 152.315677 L 113.742745 152.912081 L 112.981596 153.282443 L 113.526504 153.654979 L 113.485365 154.794897 L 112.753030 154.745861 L 112.593064 154.426198 L 113.134507 154.435488 L 112.404099 154.068203 L 112.192740 153.346204 L 111.317328 152.980949 L 110.853859 151.469180 L 110.889338 152.474617 L 111.616987 153.555144 L 110.681504 153.635707 L 110.341567 152.932420 L 110.218184 151.904906 L 111.980230 148.648937 L 110.494252 150.964597 L 110.180102 150.739079 L 110.048709 149.364137 L 109.854843 149.458445 L 109.906114 150.659459 L 110.323538 151.266502 L 109.812718 152.084773 L 109.938695 153.592596 L 109.224960 153.432038 L 109.782161 153.982949 L 108.768020 156.347787 L 107.922499 156.085349 L 107.702321 154.231060 L 107.025851 152.958718 L 107.548405 155.451413 L 106.276064 154.596315 L 106.204284 153.959426 L 105.435629 155.444153 L 105.880559 156.959089 L 104.473272 156.350092 L 104.512166 155.826644 L 104.005065 155.285295 L 104.356784 153.953274 L 104.141548 152.720411 L 104.613959 152.710361 L 106.169586 150.117067 L 107.501523 149.532167 L 108.064192 148.390983 L 109.827025 147.105370 L 108.357872 147.804134 L 108.182609 147.529291 L 107.305791 149.206294 L 105.749633 150.101097 L 104.887542 151.527744 L 104.409948 151.475353 L 104.240604 152.458518 L 103.518708 152.985995 L 102.952218 152.428266 L 102.850134 153.549976 L 103.431855 155.880449 L 103.171603 156.032498 L 103.555725 156.075484 L 104.097865 156.901563 L 104.344786 158.108688 L 103.303882 158.635549 L 102.560555 159.564272 L 102.055843 161.019857 L 102.293664 162.578215 L 101.837531 162.666990 L 101.828199 163.605865 L 100.937724 165.738022 L 100.232637 165.898126 L 100.537769 166.183218 L 101.078309 165.871121 L 100.876507 166.092920 L 101.258783 167.438477 L 100.087569 168.604892 L 99.020701 168.529811 L 97.997536 168.907186 L 97.484621 168.508708 L 97.552196 167.154435 L 97.757177 166.444229 L 98.787977 165.414938 L 98.942563 162.437706 L 99.576376 161.133268 L 99.589501 159.991873 L 100.377537 159.373236 L 101.044881 158.123556 L 102.247700 157.334086 L 102.833727 156.199764 L 100.725770 158.301159 L 100.463775 158.230303 L 100.614657 157.469303 L 100.195320 157.638635 L 99.885438 157.343929 L 99.964805 156.240679 L 101.093486 154.427223 L 100.759814 154.413585 L 99.811710 155.344257 L 99.722088 154.606672 L 101.379886 152.315677 L 101.003659 152.448059 L 101.433958 151.881340 L 100.873533 152.248102 L 101.313028 151.616648 L 100.673301 152.225674 L 100.820724 152.417296 L 100.315191 153.158778 L 100.512380 152.483128 L 100.269047 152.816390 L 99.671432 154.307351 L 99.482858 154.191684 L 99.826476 153.606476 L 99.425844 153.890928 L 100.606411 151.574401 L 101.270063 150.706690 L 101.809844 150.686489 L 101.495553 150.223409 L 102.402640 148.619754 L 102.127325 148.569845 L 101.036985 149.836313 L 101.072362 149.193784 L 101.902686 147.871008 L 101.669969 147.407483 L 102.701773 147.016084 L 102.491341 146.711206 L 101.274575 147.086135 L 101.634497 145.220382 L 102.024978 144.865894 L 102.374695 145.087028 L 103.301594 144.650423 L 102.695502 144.618579 L 102.382728 144.978859 L 102.169767 144.638149 L 102.514513 143.831167 L 103.056303 143.467332 L 102.952520 142.918561 L 103.512248 142.508951 L 105.711057 142.561262 L 106.086609 143.061696 L 107.613729 141.943187 L 108.359944 140.274636 L 106.770869 142.537143 L 106.165626 142.844851 L 105.849878 142.437308 L 104.734980 142.209400 L 103.854431 142.451028 L 103.794259 141.639081 L 103.299063 142.077673 L 103.397830 141.781881 L 103.107002 141.927141 L 103.937038 140.695898 L 104.324750 141.288633 L 106.275797 140.169079 L 105.143424 140.483186 L 104.526060 141.008939 L 104.191034 140.547316 L 103.901498 140.637470 L 104.680488 139.182603 L 105.494549 138.459518 L 105.300170 138.059870 L 106.517099 137.366338 L 107.460343 137.635674 L 109.725311 136.880924 L 107.271131 137.449355 L 106.997508 137.099523 L 106.192062 137.021982 L 108.072908 134.042438 L 107.081634 133.557680 L 105.386203 133.393182 L 107.969032 134.095492 L 106.487403 135.729295 L 106.151209 136.327341 L 106.306908 136.601928 L 105.761098 137.046858 L 105.469980 136.837877 L 103.335466 138.862673 L 102.716931 138.789047 L 103.047179 139.042881 L 102.283876 140.210322 L 100.476695 141.403254 L 99.428203 140.534108 L 99.728035 139.894718 L 99.279414 140.538373 L 97.771122 140.017399 L 96.659362 138.403488 L 96.647057 137.699128 L 97.674631 137.697385 L 97.860848 137.592484 L 97.337370 137.538753 L 97.642432 137.302496 L 98.778085 138.420307 L 98.271836 137.609507 L 99.957320 136.689806 L 101.021193 137.327925 L 102.477803 137.147759 L 100.971050 137.245072 L 100.328214 136.529021 L 99.594834 136.369855 L 98.759321 137.302393 L 97.413661 136.900326 L 97.061430 137.209080 L 95.922843 136.644401 L 94.444762 136.707854 L 93.955841 136.136387 L 93.970402 135.744778 L 94.522898 135.573738 L 94.442198 135.189924 L 95.039198 135.022266 L 97.091064 134.992735 L 97.333474 134.643785 L 97.923193 135.404135 L 98.467999 135.352864 L 98.303214 134.690749 L 99.494548 134.590052 L 98.302599 134.569646 L 98.448721 134.098262 L 99.029725 134.368254 L 98.574130 134.135177 L 98.752348 133.617030 L 100.480797 133.472857 L 101.056508 132.884860 L 100.905239 132.677663 L 100.399891 133.341091 L 99.626273 133.055757 L 100.450342 132.520548 L 100.319600 132.278139 L 98.417137 132.667800 L 97.973234 132.274858 L 98.379710 131.933392 L 98.902572 132.106793 L 98.290806 131.598594 L 98.853905 131.151325 L 99.426890 129.556121 L 100.596710 129.483950 L 100.801343 130.118091 L 101.680333 130.645978 L 103.110693 130.163250 L 101.858860 130.398646 L 101.370862 130.066513 L 101.157575 129.083402 L 100.447081 129.258112 L 100.180144 128.785147 L 99.951886 128.871590 L 99.778281 128.365749 L 100.781245 127.207333 L 101.747560 127.037031 L 102.401101 127.273062 L 103.249925 128.184086 L 103.305113 127.795924 L 104.873800 127.636677 L 103.171910 127.715224 L 102.773617 126.969352 L 101.579023 126.699545 L 101.127529 126.127975 L 102.070445 125.124580 L 101.786629 124.513000 L 102.493718 124.065239 L 103.348898 123.842415 L 104.410516 125.158338 L 104.807888 124.959344 L 103.510299 123.788479 L 104.222186 122.933605 L 103.415653 123.806833 L 100.838485 123.452838 L 101.051545 122.709018 L 101.557734 122.499074 L 101.500804 122.143375 L 103.379967 121.975328 L 104.465109 120.777617 L 103.186799 121.853734 L 102.157154 121.608536 L 102.592937 121.136760 L 102.435270 120.775915 L 100.780609 121.896453 L 100.248867 121.967105 L 100.034740 121.327469 L 99.836628 121.567726 L 99.999259 119.972171 L 99.560503 119.730909 L 99.364216 119.003969 L 99.961012 116.588899 L 100.279918 116.479382 L 101.064158 117.485731 L 101.494835 117.597706 L 101.494733 117.227940 L 101.583943 117.777361 L 102.161051 118.307914 L 102.132032 117.506650 L 102.521896 118.087243 L 102.516666 117.832015 L 103.597521 117.922622 L 103.763660 117.617968 L 102.951548 117.301503 L 101.972066 117.499267 L 101.004172 115.670223 L 100.251821 115.266618 L 100.680447 113.954511 L 101.327487 113.737717 L 101.953895 114.195096 L 102.111626 113.941979 L 101.857465 113.300006 L 100.466953 112.740701 L 100.592671 110.261437 L 102.036565 110.029180 L 102.319806 111.721800 L 103.044696 112.531595 L 102.841726 111.958303 L 103.360280 111.950715 L 103.152735 111.695899 L 103.380625 110.932657 L 102.667096 110.456063 L 102.536971 109.662490 L 103.050090 108.890245 L 103.736568 109.077671 L 103.982588 110.230490 L 104.794228 110.607825 L 105.415941 109.359991 L 106.720789 110.532251 L 107.665241 110.891804 L 106.409800 109.472171 L 105.764317 109.304270 L 105.658965 108.866764 L 106.149423 108.706592 L 106.558546 109.301789 L 107.643359 109.277444 L 108.965393 110.317466 L 109.596477 111.437514 L 109.250726 110.399665 L 107.840261 109.114176 L 108.299965 108.625097 Z M 117.719895 96.493964 L 117.643978 96.528289 L 117.726613 96.939483 L 117.729088 96.934457 L 118.015591 96.997213 L 117.712784 96.498552 L 117.719895 96.493964 Z M 110.733343 97.299082 L 111.160387 97.882152 L 111.192359 97.490953 L 110.733343 97.299082 Z ' fill='#3A74A1' fill-opacity='1' fill-rule='evenodd' stroke='#FFFFFF' stroke-opacity='1' stroke-width='0.21' stroke-linejoin='round' stroke-linecap='butt' title='Highland&amp;lt;br/&amp;gt;Winter Year: 2019&amp;lt;br/&amp;gt;Items per Head: 13.77'/>\n <path id='svg_52553b2cf052ba37_e10' d='M 133.728131 92.306857 L 133.851303 92.903837 L 133.476696 93.069463 L 133.728131 92.306857 Z ' fill='#3A74A1' fill-opacity='1' fill-rule='evenodd' stroke='#FFFFFF' stroke-opacity='1' stroke-width='0.21' stroke-linejoin='round' stroke-linecap='butt' title='Highland&amp;lt;br/&amp;gt;Winter Year: 2019&amp;lt;br/&amp;gt;Items per Head: 13.77'/>\n <path id='svg_52553b2cf052ba37_e11' d='M 118.869254 94.986055 L 119.219640 95.036918 L 119.094640 95.329878 L 118.869254 94.986055 Z ' fill='#3A74A1' fill-opacity='1' fill-rule='evenodd' stroke='#FFFFFF' stroke-opacity='1' stroke-width='0.21' stroke-linejoin='round' stroke-linecap='butt' title='Highland&amp;lt;br/&amp;gt;Winter Year: 2019&amp;lt;br/&amp;gt;Items per Head: 13.77'/>\n <path id='svg_52553b2cf052ba37_e12' d='M 108.883605 98.531037 L 108.963178 98.913827 L 108.639657 98.949307 L 108.515787 98.690182 L 108.883605 98.531037 Z ' fill='#3A74A1' fill-opacity='1' fill-rule='evenodd' stroke='#FFFFFF' stroke-opacity='1' stroke-width='0.21' stroke-linejoin='round' stroke-linecap='butt' title='Highland&amp;lt;br/&amp;gt;Winter Year: 2019&amp;lt;br/&amp;gt;Items per Head: 13.77'/>\n <path id='svg_52553b2cf052ba37_e13' d='M 106.209514 154.770022 L 107.511695 155.817181 L 107.369531 156.231451 L 107.704823 156.331266 L 107.736078 156.810301 L 108.162448 156.723774 L 108.400386 158.419739 L 108.064910 158.743422 L 108.320445 159.332795 L 107.992310 159.510150 L 107.542355 158.590430 L 107.142133 158.186108 L 106.853703 158.292811 L 106.754421 156.648694 L 105.778633 155.649833 L 105.685831 155.288473 L 106.209514 154.770022 Z ' fill='#3A74A1' fill-opacity='1' fill-rule='evenodd' stroke='#FFFFFF' stroke-opacity='1' stroke-width='0.21' stroke-linejoin='round' stroke-linecap='butt' title='Highland&amp;lt;br/&amp;gt;Winter Year: 2019&amp;lt;br/&amp;gt;Items per Head: 13.77'/>\n <path id='svg_52553b2cf052ba37_e14' d='M 105.706648 106.753372 L 106.003301 107.128163 L 105.820982 107.304638 L 105.534274 107.166308 L 105.706648 106.753372 Z ' fill='#3A74A1' fill-opacity='1' fill-rule='evenodd' stroke='#FFFFFF' stroke-opacity='1' stroke-width='0.21' stroke-linejoin='round' stroke-linecap='butt' title='Highland&amp;lt;br/&amp;gt;Winter Year: 2019&amp;lt;br/&amp;gt;Items per Head: 13.77'/>\n <path id='svg_52553b2cf052ba37_e15' d='M 104.426718 107.960701 L 104.563509 108.208854 L 104.286748 108.266380 L 104.426718 107.960701 Z ' fill='#3A74A1' fill-opacity='1' fill-rule='evenodd' stroke='#FFFFFF' stroke-opacity='1' stroke-width='0.21' stroke-linejoin='round' stroke-linecap='butt' title='Highland&amp;lt;br/&amp;gt;Winter Year: 2019&amp;lt;br/&amp;gt;Items per Head: 13.77'/>\n <path id='svg_52553b2cf052ba37_e16' d='M 103.812491 140.116558 L 102.726161 141.504565 L 101.523444 142.291986 L 101.900082 141.546403 L 101.615733 141.592033 L 102.411786 141.258383 L 103.259686 140.147217 L 103.812491 140.116558 Z ' fill='#3A74A1' fill-opacity='1' fill-rule='evenodd' stroke='#FFFFFF' stroke-opacity='1' stroke-width='0.21' stroke-linejoin='round' stroke-linecap='butt' title='Highland&amp;lt;br/&amp;gt;Winter Year: 2019&amp;lt;br/&amp;gt;Items per Head: 13.77'/>\n <path id='svg_52553b2cf052ba37_e17' d='M 102.772653 110.626015 L 103.118793 111.257223 L 102.685656 110.956776 L 102.772653 110.626015 Z ' fill='#3A74A1' fill-opacity='1' fill-rule='evenodd' stroke='#FFFFFF' stroke-opacity='1' stroke-width='0.21' stroke-linejoin='round' stroke-linecap='butt' title='Highland&amp;lt;br/&amp;gt;Winter Year: 2019&amp;lt;br/&amp;gt;Items per Head: 13.77'/>\n <path id='svg_52553b2cf052ba37_e18' d='M 102.757025 143.170055 L 102.018210 144.329600 L 101.547849 144.131386 L 101.909515 143.509468 L 102.757025 143.170055 Z ' fill='#3A74A1' fill-opacity='1' fill-rule='evenodd' stroke='#FFFFFF' stroke-opacity='1' stroke-width='0.21' stroke-linejoin='round' stroke-linecap='butt' title='Highland&amp;lt;br/&amp;gt;Winter Year: 2019&amp;lt;br/&amp;gt;Items per Head: 13.77'/>\n <path id='svg_52553b2cf052ba37_e19' d='M 93.824895 113.295965 L 94.508953 113.350231 L 94.421074 113.707240 L 95.033968 114.164393 L 95.161776 114.961679 L 95.683572 115.100193 L 96.292753 116.201720 L 95.969356 119.792312 L 95.266635 120.232504 L 96.179363 120.600856 L 95.889231 121.145314 L 96.436210 122.267451 L 95.685295 122.775588 L 96.153133 122.463246 L 96.902694 122.510086 L 97.076606 122.995110 L 96.627676 123.515100 L 97.307018 123.125236 L 98.491276 123.761202 L 98.777573 124.297026 L 100.592875 123.620719 L 101.118506 123.719365 L 100.870046 123.954904 L 101.888700 124.135480 L 101.549388 125.192895 L 100.325446 126.012923 L 99.883552 125.877300 L 99.843847 126.469871 L 100.101494 126.584903 L 99.768847 127.089819 L 99.145618 127.350646 L 98.180779 128.794970 L 97.190120 129.260326 L 96.755957 128.594213 L 97.284212 128.026684 L 97.345574 126.900527 L 99.305664 125.595803 L 97.480724 125.914236 L 97.057861 124.597534 L 97.079415 125.470967 L 96.319230 126.808239 L 95.955719 126.491179 L 96.062054 125.381161 L 95.402710 125.058462 L 95.284683 125.607163 L 93.394320 125.817991 L 93.922207 124.987810 L 92.941289 125.051899 L 92.711289 124.282422 L 93.118996 124.235049 L 93.230355 123.849285 L 92.487644 124.124507 L 91.604962 122.663283 L 91.636749 122.240297 L 92.311272 121.948648 L 92.324089 121.627507 L 93.494196 122.663593 L 92.665062 121.651911 L 92.690164 121.277161 L 91.812814 121.805520 L 92.044991 121.204726 L 91.723193 120.954421 L 91.767019 120.317634 L 91.663945 120.113310 L 91.196331 120.894434 L 91.203469 120.115135 L 90.643835 120.406168 L 90.688441 121.549985 L 90.435674 121.679085 L 88.830379 120.699090 L 88.583048 119.600353 L 88.320847 119.331589 L 88.028705 119.480071 L 88.185799 118.644867 L 88.921723 118.880240 L 88.610837 118.087550 L 89.073097 117.428615 L 89.910331 119.100788 L 90.366028 119.060921 L 90.565124 119.403596 L 89.910762 117.740444 L 90.517607 117.616472 L 90.844837 117.980865 L 90.972543 117.708329 L 90.047266 116.633401 L 89.878770 116.779441 L 90.217363 115.329989 L 90.838459 115.821884 L 90.987802 116.755201 L 91.709657 117.143753 L 92.179915 117.964808 L 92.633151 117.566329 L 92.435347 118.460270 L 92.985896 117.350068 L 93.956517 119.096195 L 93.806704 118.467407 L 94.056803 118.462218 L 93.375556 117.670922 L 93.044140 116.587359 L 93.544708 116.046163 L 93.117765 116.066959 L 92.810447 114.740680 L 93.745014 114.133939 L 93.824895 113.295965 Z ' fill='#3A74A1' fill-opacity='1' fill-rule='evenodd' stroke='#FFFFFF' stroke-opacity='1' stroke-width='0.21' stroke-linejoin='round' stroke-linecap='butt' title='Highland&amp;lt;br/&amp;gt;Winter Year: 2019&amp;lt;br/&amp;gt;Items per Head: 13.77'/>\n <path id='svg_52553b2cf052ba37_e20' d='M 101.549284 145.289804 L 100.960489 146.737698 L 100.623495 145.975911 L 101.549284 145.289804 Z ' fill='#3A74A1' fill-opacity='1' fill-rule='evenodd' stroke='#FFFFFF' stroke-opacity='1' stroke-width='0.21' stroke-linejoin='round' stroke-linecap='butt' title='Highland&amp;lt;br/&amp;gt;Winter Year: 2019&amp;lt;br/&amp;gt;Items per Head: 13.77'/>\n <path id='svg_52553b2cf052ba37_e21' d='M 101.124453 147.539167 L 101.358659 148.075562 L 101.048162 148.341353 L 101.124453 147.539167 Z ' fill='#3A74A1' fill-opacity='1' fill-rule='evenodd' stroke='#FFFFFF' stroke-opacity='1' stroke-width='0.21' stroke-linejoin='round' stroke-linecap='butt' title='Highland&amp;lt;br/&amp;gt;Winter Year: 2019&amp;lt;br/&amp;gt;Items per Head: 13.77'/>\n <path id='svg_52553b2cf052ba37_e22' d='M 100.791705 146.603367 L 101.035549 147.148337 L 100.712644 148.546949 L 100.383484 147.752863 L 100.791705 146.603367 Z ' fill='#3A74A1' fill-opacity='1' fill-rule='evenodd' stroke='#FFFFFF' stroke-opacity='1' stroke-width='0.21' stroke-linejoin='round' stroke-linecap='butt' title='Highland&amp;lt;br/&amp;gt;Winter Year: 2019&amp;lt;br/&amp;gt;Items per Head: 13.77'/>\n <path id='svg_52553b2cf052ba37_e23' d='M 95.120718 137.454155 L 95.865583 137.897752 L 95.826126 138.335422 L 96.758520 139.308731 L 97.118095 140.656482 L 99.125807 140.923972 L 99.474551 141.532457 L 99.970342 141.578090 L 100.580652 142.432223 L 100.855670 142.356526 L 100.801548 143.133960 L 100.456331 142.785603 L 100.795806 143.289740 L 100.411991 144.005053 L 99.931581 143.809711 L 100.055247 143.279302 L 99.635030 143.348375 L 99.771206 143.681759 L 98.975540 144.324862 L 100.046224 143.964756 L 100.197473 144.283558 L 98.377248 145.554465 L 97.675862 145.263963 L 98.213612 144.782733 L 97.910908 144.512698 L 97.131056 145.247967 L 96.432027 145.190031 L 95.691365 145.810511 L 95.254946 145.570256 L 94.416870 145.934999 L 93.656829 145.728889 L 93.056301 145.812543 L 92.841823 146.292253 L 92.761533 146.070662 L 92.275690 146.205195 L 91.748726 145.583382 L 91.338865 145.659775 L 91.815256 144.335526 L 92.575317 144.443625 L 92.860077 144.630766 L 92.683273 144.914663 L 93.208678 145.065625 L 93.152916 144.502671 L 93.867245 144.785973 L 94.965778 144.608863 L 96.104876 144.140594 L 96.367384 143.655981 L 93.847659 144.190962 L 93.730453 143.565866 L 94.472755 142.983531 L 94.578271 142.412473 L 95.759146 142.159708 L 96.500525 141.282459 L 94.834831 141.657969 L 94.617032 141.001700 L 93.651989 140.284418 L 92.918218 140.375374 L 92.261129 140.027242 L 92.323064 139.640556 L 93.054578 139.110762 L 92.646583 139.142101 L 92.576753 138.441840 L 93.239605 138.548771 L 93.419239 138.294384 L 94.239985 139.017408 L 93.815666 138.532999 L 93.815051 137.873756 L 94.229936 138.147278 L 94.212605 137.696565 L 95.120718 137.454155 Z ' fill='#3A74A1' fill-opacity='1' fill-rule='evenodd' stroke='#FFFFFF' stroke-opacity='1' stroke-width='0.21' stroke-linejoin='round' stroke-linecap='butt' title='Highland&amp;lt;br/&amp;gt;Winter Year: 2019&amp;lt;br/&amp;gt;Items per Head: 13.77'/>\n <path id='svg_52553b2cf052ba37_e24' d='M 100.361130 113.035919 L 100.751610 113.057145 L 100.580981 113.281916 L 100.361130 113.035919 Z ' fill='#3A74A1' fill-opacity='1' fill-rule='evenodd' stroke='#FFFFFF' stroke-opacity='1' stroke-width='0.21' stroke-linejoin='round' stroke-linecap='butt' title='Highland&amp;lt;br/&amp;gt;Winter Year: 2019&amp;lt;br/&amp;gt;Items per Head: 13.77'/>\n <path id='svg_52553b2cf052ba37_e25' d='M 100.052192 148.156059 L 100.243001 148.917434 L 99.315817 149.038639 L 99.343502 148.620368 L 100.052192 148.156059 Z ' fill='#3A74A1' fill-opacity='1' fill-rule='evenodd' stroke='#FFFFFF' stroke-opacity='1' stroke-width='0.21' stroke-linejoin='round' stroke-linecap='butt' title='Highland&amp;lt;br/&amp;gt;Winter Year: 2019&amp;lt;br/&amp;gt;Items per Head: 13.77'/>\n <path id='svg_52553b2cf052ba37_e26' d='M 100.093085 147.335927 L 99.958242 148.128783 L 99.745775 147.895806 L 100.093085 147.335927 Z ' fill='#3A74A1' fill-opacity='1' fill-rule='evenodd' stroke='#FFFFFF' stroke-opacity='1' stroke-width='0.21' stroke-linejoin='round' stroke-linecap='butt' title='Highland&amp;lt;br/&amp;gt;Winter Year: 2019&amp;lt;br/&amp;gt;Items per Head: 13.77'/>\n <path id='svg_52553b2cf052ba37_e27' d='M 99.752339 149.308960 L 99.977725 150.199415 L 97.915154 153.307977 L 97.332346 155.124406 L 97.138234 155.360253 L 97.040204 155.112615 L 96.922075 155.633630 L 96.486272 155.609738 L 96.035476 157.285091 L 95.112311 157.156278 L 94.502287 156.302513 L 94.614366 154.691372 L 95.428550 153.690151 L 96.862396 153.551207 L 97.625411 153.131091 L 96.559856 153.468147 L 95.723973 153.126784 L 96.489143 151.727393 L 99.752339 149.308960 Z ' fill='#3A74A1' fill-opacity='1' fill-rule='evenodd' stroke='#FFFFFF' stroke-opacity='1' stroke-width='0.21' stroke-linejoin='round' stroke-linecap='butt' title='Highland&amp;lt;br/&amp;gt;Winter Year: 2019&amp;lt;br/&amp;gt;Items per Head: 13.77'/>\n <path id='svg_52553b2cf052ba37_e28' d='M 99.448096 121.665857 L 99.827399 122.210150 L 99.533514 122.181131 L 99.448096 121.665857 Z ' fill='#3A74A1' fill-opacity='1' fill-rule='evenodd' stroke='#FFFFFF' stroke-opacity='1' stroke-width='0.21' stroke-linejoin='round' stroke-linecap='butt' title='Highland&amp;lt;br/&amp;gt;Winter Year: 2019&amp;lt;br/&amp;gt;Items per Head: 13.77'/>\n <path id='svg_52553b2cf052ba37_e29' d='M 99.227323 123.310120 L 99.455991 123.603185 L 99.179845 123.757100 L 99.227323 123.310120 Z ' fill='#3A74A1' fill-opacity='1' fill-rule='evenodd' stroke='#FFFFFF' stroke-opacity='1' stroke-width='0.21' stroke-linejoin='round' stroke-linecap='butt' title='Highland&amp;lt;br/&amp;gt;Winter Year: 2019&amp;lt;br/&amp;gt;Items per Head: 13.77'/>\n <path id='svg_52553b2cf052ba37_e30' d='M 99.056487 158.877548 L 99.069122 159.900734 L 98.427905 160.767604 L 98.328644 160.051757 L 99.056487 158.877548 Z ' fill='#3A74A1' fill-opacity='1' fill-rule='evenodd' stroke='#FFFFFF' stroke-opacity='1' stroke-width='0.21' stroke-linejoin='round' stroke-linecap='butt' title='Highland&amp;lt;br/&amp;gt;Winter Year: 2019&amp;lt;br/&amp;gt;Items per Head: 13.77'/>\n <path id='svg_52553b2cf052ba37_e31' d='M 98.352639 116.411808 L 98.527166 116.776140 L 98.141607 118.072067 L 97.873767 117.323406 L 98.158897 117.257554 L 98.065623 116.701181 L 98.352639 116.411808 Z ' fill='#3A74A1' fill-opacity='1' fill-rule='evenodd' stroke='#FFFFFF' stroke-opacity='1' stroke-width='0.21' stroke-linejoin='round' stroke-linecap='butt' title='Highland&amp;lt;br/&amp;gt;Winter Year: 2019&amp;lt;br/&amp;gt;Items per Head: 13.77'/>\n <path id='svg_52553b2cf052ba37_e32' d='M 97.677707 122.287262 L 98.520193 122.761929 L 98.243124 123.502899 L 97.455397 123.138977 L 97.299123 122.684202 L 97.677707 122.287262 Z ' fill='#3A74A1' fill-opacity='1' fill-rule='evenodd' stroke='#FFFFFF' stroke-opacity='1' stroke-width='0.21' stroke-linejoin='round' stroke-linecap='butt' title='Highland&amp;lt;br/&amp;gt;Winter Year: 2019&amp;lt;br/&amp;gt;Items per Head: 13.77'/>\n <path id='svg_52553b2cf052ba37_e33' d='M 98.266298 131.687805 L 98.449439 131.869611 L 97.873153 132.022913 L 98.266298 131.687805 Z ' fill='#3A74A1' fill-opacity='1' fill-rule='evenodd' stroke='#FFFFFF' stroke-opacity='1' stroke-width='0.21' stroke-linejoin='round' stroke-linecap='butt' title='Highland&amp;lt;br/&amp;gt;Winter Year: 2019&amp;lt;br/&amp;gt;Items per Head: 13.77'/>\n <path id='svg_52553b2cf052ba37_e34' d='M 97.821267 117.924508 L 98.034635 118.788016 L 97.365159 119.890238 L 97.761073 121.544037 L 96.988419 122.190462 L 96.548821 121.686222 L 96.693817 120.042207 L 97.052817 119.170497 L 97.569320 119.330769 L 97.416840 118.519354 L 97.557323 118.358159 L 97.577010 118.751818 L 97.921860 118.473314 L 97.821267 117.924508 Z ' fill='#3A74A1' fill-opacity='1' fill-rule='evenodd' stroke='#FFFFFF' stroke-opacity='1' stroke-width='0.21' stroke-linejoin='round' stroke-linecap='butt' title='Highland&amp;lt;br/&amp;gt;Winter Year: 2019&amp;lt;br/&amp;gt;Items per Head: 13.77'/>\n <path id='svg_52553b2cf052ba37_e35' d='M 95.349285 130.842038 L 95.690954 131.342444 L 95.589541 132.149141 L 95.001053 132.527316 L 94.439593 132.171271 L 94.427124 131.756611 L 95.043710 131.515022 L 94.985670 131.038303 L 95.349285 130.842038 Z ' fill='#3A74A1' fill-opacity='1' fill-rule='evenodd' stroke='#FFFFFF' stroke-opacity='1' stroke-width='0.21' stroke-linejoin='round' stroke-linecap='butt' title='Highland&amp;lt;br/&amp;gt;Winter Year: 2019&amp;lt;br/&amp;gt;Items per Head: 13.77'/>\n <path id='svg_52553b2cf052ba37_e36' d='M 95.346906 141.724724 L 95.472951 141.897609 L 95.180809 141.854747 L 95.346906 141.724724 Z ' fill='#3A74A1' fill-opacity='1' fill-rule='evenodd' stroke='#FFFFFF' stroke-opacity='1' stroke-width='0.21' stroke-linejoin='round' stroke-linecap='butt' title='Highland&amp;lt;br/&amp;gt;Winter Year: 2019&amp;lt;br/&amp;gt;Items per Head: 13.77'/>\n <path id='svg_52553b2cf052ba37_e37' d='M 94.133854 153.819661 L 94.272799 156.719653 L 94.949987 157.860228 L 95.186284 159.702519 L 94.645333 160.294270 L 94.457887 160.144045 L 94.419638 160.619942 L 93.426314 160.946929 L 92.583316 160.786472 L 92.198475 161.643620 L 91.829426 161.919869 L 91.253755 161.813840 L 90.929005 161.580248 L 91.043031 160.935464 L 92.008157 159.915581 L 91.113888 158.422980 L 92.159406 157.483900 L 91.058946 157.229185 L 90.120255 158.897749 L 89.122869 159.635683 L 88.664055 159.093501 L 89.571656 157.823006 L 89.650819 157.138332 L 89.314481 156.857982 L 89.695527 156.505853 L 89.804938 155.519090 L 90.612766 155.440440 L 91.510090 154.734542 L 91.415484 155.980633 L 91.599835 154.931627 L 92.025384 155.065957 L 93.205130 154.004442 L 94.133854 153.819661 Z ' fill='#3A74A1' fill-opacity='1' fill-rule='evenodd' stroke='#FFFFFF' stroke-opacity='1' stroke-width='0.21' stroke-linejoin='round' stroke-linecap='butt' title='Highland&amp;lt;br/&amp;gt;Winter Year: 2019&amp;lt;br/&amp;gt;Items per Head: 13.77'/>\n <path id='svg_52553b2cf052ba37_e38' d='M 94.838421 125.765078 L 95.130460 126.100288 L 94.389081 126.548295 L 94.197737 126.108286 L 94.838421 125.765078 Z ' fill='#3A74A1' fill-opacity='1' fill-rule='evenodd' stroke='#FFFFFF' stroke-opacity='1' stroke-width='0.21' stroke-linejoin='round' stroke-linecap='butt' title='Highland&amp;lt;br/&amp;gt;Winter Year: 2019&amp;lt;br/&amp;gt;Items per Head: 13.77'/>\n <path id='svg_52553b2cf052ba37_e39' d='M 92.630075 140.916835 L 93.711381 140.931355 L 94.694348 141.658175 L 93.884903 141.874702 L 93.670364 141.607416 L 93.429698 141.936577 L 93.075209 141.428788 L 93.240200 141.171202 L 92.968053 141.545583 L 92.611207 141.344293 L 92.630075 140.916835 Z ' fill='#3A74A1' fill-opacity='1' fill-rule='evenodd' stroke='#FFFFFF' stroke-opacity='1' stroke-width='0.21' stroke-linejoin='round' stroke-linecap='butt' title='Highland&amp;lt;br/&amp;gt;Winter Year: 2019&amp;lt;br/&amp;gt;Items per Head: 13.77'/>\n <path id='svg_52553b2cf052ba37_e40' d='M 94.133546 149.357953 L 94.316665 149.652351 L 93.432713 150.984783 L 93.571411 151.375469 L 92.585776 152.339980 L 92.301735 151.815374 L 92.948159 151.696939 L 92.293737 151.465194 L 92.767482 150.464281 L 94.133546 149.357953 Z ' fill='#3A74A1' fill-opacity='1' fill-rule='evenodd' stroke='#FFFFFF' stroke-opacity='1' stroke-width='0.21' stroke-linejoin='round' stroke-linecap='butt' title='Highland&amp;lt;br/&amp;gt;Winter Year: 2019&amp;lt;br/&amp;gt;Items per Head: 13.77'/>\n <path id='svg_52553b2cf052ba37_e41' d='M 93.648215 132.955225 L 94.189534 133.066277 L 94.226757 133.476037 L 93.567206 133.454913 L 93.648215 132.955225 Z ' fill='#3A74A1' fill-opacity='1' fill-rule='evenodd' stroke='#FFFFFF' stroke-opacity='1' stroke-width='0.21' stroke-linejoin='round' stroke-linecap='butt' title='Highland&amp;lt;br/&amp;gt;Winter Year: 2019&amp;lt;br/&amp;gt;Items per Head: 13.77'/>\n <path id='svg_52553b2cf052ba37_e42' d='M 93.163929 128.069896 L 94.000241 128.673786 L 94.135085 129.065292 L 93.790317 129.249356 L 94.224706 129.426856 L 93.887138 130.406336 L 93.213231 130.966523 L 91.464376 129.188444 L 93.163929 128.069896 Z ' fill='#3A74A1' fill-opacity='1' fill-rule='evenodd' stroke='#FFFFFF' stroke-opacity='1' stroke-width='0.21' stroke-linejoin='round' stroke-linecap='butt' title='Highland&amp;lt;br/&amp;gt;Winter Year: 2019&amp;lt;br/&amp;gt;Items per Head: 13.77'/>\n <path id='svg_52553b2cf052ba37_e43' d='M 91.572682 121.457410 L 91.550595 121.798322 L 91.293336 121.759888 L 91.572682 121.457410 Z ' fill='#3A74A1' fill-opacity='1' fill-rule='evenodd' stroke='#FFFFFF' stroke-opacity='1' stroke-width='0.21' stroke-linejoin='round' stroke-linecap='butt' title='Highland&amp;lt;br/&amp;gt;Winter Year: 2019&amp;lt;br/&amp;gt;Items per Head: 13.77'/>\n <path id='svg_52553b2cf052ba37_e44' d='M 90.362049 127.673284 L 91.202997 127.780338 L 91.058515 128.050945 L 91.452994 128.342780 L 90.497917 127.972090 L 89.671122 128.184763 L 90.362049 127.673284 Z ' fill='#3A74A1' fill-opacity='1' fill-rule='evenodd' stroke='#FFFFFF' stroke-opacity='1' stroke-width='0.21' stroke-linejoin='round' stroke-linecap='butt' title='Highland&amp;lt;br/&amp;gt;Winter Year: 2019&amp;lt;br/&amp;gt;Items per Head: 13.77'/>\n <path id='svg_52553b2cf052ba37_e45' d='M 91.430743 144.205421 L 91.203715 144.951516 L 90.673942 145.116424 L 90.766373 144.563292 L 91.430743 144.205421 Z ' fill='#3A74A1' fill-opacity='1' fill-rule='evenodd' stroke='#FFFFFF' stroke-opacity='1' stroke-width='0.21' stroke-linejoin='round' stroke-linecap='butt' title='Highland&amp;lt;br/&amp;gt;Winter Year: 2019&amp;lt;br/&amp;gt;Items per Head: 13.77'/>\n <path id='svg_52553b2cf052ba37_e46' d='M 90.846356 136.371926 L 91.063130 136.782299 L 90.398656 137.963174 L 90.101408 137.872772 L 90.092978 138.313868 L 88.925845 138.926453 L 88.745577 138.610828 L 88.559771 138.968393 L 88.084487 138.740646 L 87.817058 139.195319 L 87.774093 138.548894 L 88.365760 138.443686 L 89.006340 137.454463 L 90.846356 136.371926 Z ' fill='#3A74A1' fill-opacity='1' fill-rule='evenodd' stroke='#FFFFFF' stroke-opacity='1' stroke-width='0.21' stroke-linejoin='round' stroke-linecap='butt' title='Highland&amp;lt;br/&amp;gt;Winter Year: 2019&amp;lt;br/&amp;gt;Items per Head: 13.77'/>\n <path id='svg_52553b2cf052ba37_e47' d='M 87.072193 139.210290 L 87.407506 139.933212 L 86.974738 139.950520 L 86.917970 140.251706 L 86.777692 139.918692 L 86.422718 139.978623 L 86.263116 140.751046 L 85.441077 140.707055 L 85.146187 141.659056 L 84.071198 141.407357 L 84.189735 140.588967 L 83.803767 140.232327 L 84.280794 139.856305 L 85.027299 139.634198 L 85.504828 139.962811 L 86.256368 139.462030 L 86.733933 139.636961 L 87.072193 139.210290 Z ' fill='#3A74A1' fill-opacity='1' fill-rule='evenodd' stroke='#FFFFFF' stroke-opacity='1' stroke-width='0.21' stroke-linejoin='round' stroke-linecap='butt' title='Highland&amp;lt;br/&amp;gt;Winter Year: 2019&amp;lt;br/&amp;gt;Items per Head: 13.77'/>\n <path id='svg_52553b2cf052ba37_e48' d='M 136.645677 152.386841 L 138.977893 152.646744 L 139.922552 153.861786 L 141.334782 154.200338 L 142.344430 155.206379 L 141.008493 156.619367 L 140.527058 155.986786 L 139.890066 155.991194 L 139.686212 156.431921 L 140.136188 157.147993 L 139.363922 157.878072 L 138.403207 157.461237 L 137.491402 157.871099 L 137.016633 157.498051 L 136.199064 158.096793 L 135.813815 157.944949 L 135.076435 158.641250 L 134.768746 158.048618 L 133.159000 159.376211 L 132.788927 159.887280 L 132.931562 160.231821 L 132.476482 160.492174 L 131.761865 158.395170 L 130.603099 158.977158 L 130.355009 158.494144 L 129.700771 158.557698 L 129.407295 157.841052 L 128.669504 158.134835 L 128.063358 159.026788 L 126.998418 158.667379 L 126.541757 158.096998 L 124.708510 158.791618 L 124.606173 158.297263 L 124.955904 157.971487 L 124.529821 156.934438 L 125.034779 156.420210 L 123.957492 156.588277 L 123.511045 156.118121 L 124.145965 155.951101 L 124.805516 155.198238 L 125.638526 154.987984 L 126.531687 153.835247 L 127.339022 154.107435 L 127.799209 153.665685 L 129.183691 154.006165 L 130.340058 153.828725 L 130.824160 154.291375 L 131.872324 154.060615 L 133.002378 155.035072 L 134.038237 154.987759 L 135.379179 154.346564 L 135.509471 153.581969 L 136.645677 152.386841 Z ' fill='#3A679E' fill-opacity='1' fill-rule='evenodd' stroke='#FFFFFF' stroke-opacity='1' stroke-width='0.21' stroke-linejoin='round' stroke-linecap='butt' title='Lothian&amp;lt;br/&amp;gt;Winter Year: 2019&amp;lt;br/&amp;gt;Items per Head: 14.51'/>\n <path id='svg_52553b2cf052ba37_e49' d='M 142.499720 76.491919 L 142.692356 76.793290 L 142.286556 76.804509 L 142.403865 77.374437 L 142.068736 77.565330 L 141.725406 77.322879 L 141.930859 76.667739 L 142.499720 76.491919 Z ' fill='#3A669E' fill-opacity='1' fill-rule='evenodd' stroke='#FFFFFF' stroke-opacity='1' stroke-width='0.21' stroke-linejoin='round' stroke-linecap='butt' title='Orkney&amp;lt;br/&amp;gt;Winter Year: 2019&amp;lt;br/&amp;gt;Items per Head: 14.54'/>\n <path id='svg_52553b2cf052ba37_e50' d='M 140.409011 78.143934 L 140.475294 78.474222 L 140.890343 78.537983 L 140.269411 79.442670 L 140.765652 79.375321 L 141.303158 78.792491 L 141.708322 78.866836 L 142.040189 78.323629 L 142.183501 78.984737 L 142.655379 79.171917 L 141.432750 79.148969 L 140.955643 79.973714 L 141.069526 80.410052 L 140.798486 79.957452 L 140.301383 80.470325 L 140.250317 79.991824 L 139.937933 80.275865 L 139.539803 80.112351 L 138.859129 81.255388 L 138.834499 80.404985 L 140.054544 79.331944 L 139.721199 78.430539 L 139.886990 78.855124 L 140.188177 78.778955 L 140.409011 78.143934 Z ' fill='#3A669E' fill-opacity='1' fill-rule='evenodd' stroke='#FFFFFF' stroke-opacity='1' stroke-width='0.21' stroke-linejoin='round' stroke-linecap='butt' title='Orkney&amp;lt;br/&amp;gt;Winter Year: 2019&amp;lt;br/&amp;gt;Items per Head: 14.54'/>\n <path id='svg_52553b2cf052ba37_e51' d='M 139.622288 81.752716 L 139.664042 82.192992 L 140.309381 82.237904 L 139.896628 82.349451 L 140.004503 82.817944 L 140.698816 82.692372 L 140.683804 83.750277 L 140.324229 83.567138 L 139.868266 83.835756 L 139.874993 83.252087 L 139.568535 83.022209 L 139.293189 83.173089 L 139.371655 83.760819 L 138.895430 83.686270 L 139.119955 82.978667 L 139.684327 82.749570 L 139.065198 81.963728 L 139.622288 81.752716 Z ' fill='#3A669E' fill-opacity='1' fill-rule='evenodd' stroke='#FFFFFF' stroke-opacity='1' stroke-width='0.21' stroke-linejoin='round' stroke-linecap='butt' title='Orkney&amp;lt;br/&amp;gt;Winter Year: 2019&amp;lt;br/&amp;gt;Items per Head: 14.54'/>\n <path id='svg_52553b2cf052ba37_e52' d='M 140.105959 81.876916 L 140.248369 82.067151 L 139.951469 82.151810 L 140.105959 81.876916 Z ' fill='#3A669E' fill-opacity='1' fill-rule='evenodd' stroke='#FFFFFF' stroke-opacity='1' stroke-width='0.21' stroke-linejoin='round' stroke-linecap='butt' title='Orkney&amp;lt;br/&amp;gt;Winter Year: 2019&amp;lt;br/&amp;gt;Items per Head: 14.54'/>\n <path id='svg_52553b2cf052ba37_e53' d='M 138.659151 87.626633 L 139.156706 87.708503 L 138.928694 87.949742 L 138.659151 87.626633 Z ' fill='#3A669E' fill-opacity='1' fill-rule='evenodd' stroke='#FFFFFF' stroke-opacity='1' stroke-width='0.21' stroke-linejoin='round' stroke-linecap='butt' title='Orkney&amp;lt;br/&amp;gt;Winter Year: 2019&amp;lt;br/&amp;gt;Items per Head: 14.54'/>\n <path id='svg_52553b2cf052ba37_e54' d='M 132.668624 81.860713 L 134.401256 82.579247 L 134.721987 83.003791 L 134.531526 83.165255 L 135.210744 83.775831 L 135.111175 84.555192 L 134.561386 84.308946 L 134.511899 84.885521 L 133.767546 85.159287 L 133.985900 85.326758 L 135.133673 85.172413 L 135.682458 85.772856 L 136.044165 85.063511 L 136.421745 85.222043 L 136.234975 85.607641 L 136.536530 85.617937 L 136.166108 86.211758 L 136.547851 86.335157 L 136.887759 85.763874 L 137.266979 85.874928 L 137.534286 85.589348 L 137.669293 86.274021 L 137.049611 86.478798 L 137.214252 87.126248 L 137.592632 87.276246 L 137.781617 87.131457 L 137.421161 86.705581 L 138.650373 86.083294 L 138.585793 87.303666 L 137.725608 87.400303 L 137.147538 88.373302 L 136.882897 87.924149 L 136.396520 87.824560 L 136.363675 87.920772 L 135.927883 87.835367 L 135.557172 86.352691 L 132.924550 87.470850 L 132.350805 86.656996 L 132.255338 85.763628 L 131.688097 86.524531 L 130.968969 86.133908 L 130.903282 84.993661 L 131.283528 84.095986 L 131.047599 82.977150 L 131.513508 82.391309 L 131.251125 82.228820 L 132.668624 81.860713 Z ' fill='#3A669E' fill-opacity='1' fill-rule='evenodd' stroke='#FFFFFF' stroke-opacity='1' stroke-width='0.21' stroke-linejoin='round' stroke-linecap='butt' title='Orkney&amp;lt;br/&amp;gt;Winter Year: 2019&amp;lt;br/&amp;gt;Items per Head: 14.54'/>\n <path id='svg_52553b2cf052ba37_e55' d='M 136.340353 87.989089 L 136.195845 88.412393 L 136.529004 88.306897 L 136.496765 88.744321 L 136.870797 88.788946 L 136.280626 89.084228 L 136.603880 89.568061 L 135.975748 90.129027 L 136.059157 91.528666 L 135.399361 91.421407 L 135.376800 90.305093 L 134.878405 89.829545 L 135.339065 89.728131 L 135.097046 89.394520 L 134.718460 89.536766 L 134.973831 89.223274 L 135.667815 89.379610 L 136.313441 89.018210 L 135.281991 88.777053 L 136.184996 88.713292 L 136.067955 88.226012 L 136.340353 87.989089 Z ' fill='#3A669E' fill-opacity='1' fill-rule='evenodd' stroke='#FFFFFF' stroke-opacity='1' stroke-width='0.21' stroke-linejoin='round' stroke-linecap='butt' title='Orkney&amp;lt;br/&amp;gt;Winter Year: 2019&amp;lt;br/&amp;gt;Items per Head: 14.54'/>\n <path id='svg_52553b2cf052ba37_e56' d='M 138.348326 79.815738 L 138.539526 80.235116 L 138.258006 80.124615 L 138.348326 79.815738 Z ' fill='#3A669E' fill-opacity='1' fill-rule='evenodd' stroke='#FFFFFF' stroke-opacity='1' stroke-width='0.21' stroke-linejoin='round' stroke-linecap='butt' title='Orkney&amp;lt;br/&amp;gt;Winter Year: 2019&amp;lt;br/&amp;gt;Items per Head: 14.54'/>\n <path id='svg_52553b2cf052ba37_e57' d='M 138.116724 79.718610 L 138.076426 80.159275 L 138.414855 80.366000 L 138.062849 81.089680 L 138.341579 82.068402 L 137.726428 82.355048 L 137.295075 81.092858 L 137.861067 81.089127 L 137.730449 80.078677 L 138.116724 79.718610 Z ' fill='#3A669E' fill-opacity='1' fill-rule='evenodd' stroke='#FFFFFF' stroke-opacity='1' stroke-width='0.21' stroke-linejoin='round' stroke-linecap='butt' title='Orkney&amp;lt;br/&amp;gt;Winter Year: 2019&amp;lt;br/&amp;gt;Items per Head: 14.54'/>\n <path id='svg_52553b2cf052ba37_e58' d='M 137.554322 83.441748 L 137.311810 84.370944 L 137.514783 84.804388 L 137.262160 85.030351 L 136.002103 84.736096 L 136.382985 83.652494 L 136.923402 84.140204 L 137.554322 83.441748 Z ' fill='#3A669E' fill-opacity='1' fill-rule='evenodd' stroke='#FFFFFF' stroke-opacity='1' stroke-width='0.21' stroke-linejoin='round' stroke-linecap='butt' title='Orkney&amp;lt;br/&amp;gt;Winter Year: 2019&amp;lt;br/&amp;gt;Items per Head: 14.54'/>\n <path id='svg_52553b2cf052ba37_e59' d='M 135.846629 77.188057 L 136.137971 77.466315 L 135.461069 78.168277 L 136.447156 78.469833 L 136.710360 79.351345 L 136.991140 79.310267 L 137.205863 79.765841 L 136.955661 79.709832 L 136.659951 80.239872 L 136.749633 79.601630 L 136.303760 79.101860 L 135.968961 78.936091 L 135.492653 79.543735 L 134.501850 77.878494 L 135.248337 77.935200 L 135.846629 77.188057 Z ' fill='#3A669E' fill-opacity='1' fill-rule='evenodd' stroke='#FFFFFF' stroke-opacity='1' stroke-width='0.21' stroke-linejoin='round' stroke-linecap='butt' title='Orkney&amp;lt;br/&amp;gt;Winter Year: 2019&amp;lt;br/&amp;gt;Items per Head: 14.54'/>\n <path id='svg_52553b2cf052ba37_e60' d='M 136.756690 76.613739 L 136.774182 77.799414 L 136.423940 78.074390 L 136.756690 76.613739 Z ' fill='#3A669E' fill-opacity='1' fill-rule='evenodd' stroke='#FFFFFF' stroke-opacity='1' stroke-width='0.21' stroke-linejoin='round' stroke-linecap='butt' title='Orkney&amp;lt;br/&amp;gt;Winter Year: 2019&amp;lt;br/&amp;gt;Items per Head: 14.54'/>\n <path id='svg_52553b2cf052ba37_e61' d='M 136.170148 81.533134 L 136.198204 82.634413 L 135.904298 81.877429 L 136.170148 81.533134 Z ' fill='#3A669E' fill-opacity='1' fill-rule='evenodd' stroke='#FFFFFF' stroke-opacity='1' stroke-width='0.21' stroke-linejoin='round' stroke-linecap='butt' title='Orkney&amp;lt;br/&amp;gt;Winter Year: 2019&amp;lt;br/&amp;gt;Items per Head: 14.54'/>\n <path id='svg_52553b2cf052ba37_e62' d='M 135.677947 83.337997 L 135.876837 83.633174 L 135.539823 83.783952 L 135.321593 83.441933 L 135.677947 83.337997 Z ' fill='#3A669E' fill-opacity='1' fill-rule='evenodd' stroke='#FFFFFF' stroke-opacity='1' stroke-width='0.21' stroke-linejoin='round' stroke-linecap='butt' title='Orkney&amp;lt;br/&amp;gt;Winter Year: 2019&amp;lt;br/&amp;gt;Items per Head: 14.54'/>\n <path id='svg_52553b2cf052ba37_e63' d='M 134.431856 80.827971 L 134.923012 81.353931 L 135.834652 81.312627 L 135.529731 81.722918 L 135.688713 82.333678 L 134.788865 82.541861 L 134.143794 82.081425 L 133.856286 81.425793 L 134.431856 80.827971 Z ' fill='#3A669E' fill-opacity='1' fill-rule='evenodd' stroke='#FFFFFF' stroke-opacity='1' stroke-width='0.21' stroke-linejoin='round' stroke-linecap='butt' title='Orkney&amp;lt;br/&amp;gt;Winter Year: 2019&amp;lt;br/&amp;gt;Items per Head: 14.54'/>\n <path id='svg_52553b2cf052ba37_e64' d='M 135.697737 82.508308 L 135.655408 82.901352 L 135.082485 82.824527 L 135.697737 82.508308 Z ' fill='#3A669E' fill-opacity='1' fill-rule='evenodd' stroke='#FFFFFF' stroke-opacity='1' stroke-width='0.21' stroke-linejoin='round' stroke-linecap='butt' title='Orkney&amp;lt;br/&amp;gt;Winter Year: 2019&amp;lt;br/&amp;gt;Items per Head: 14.54'/>\n <path id='svg_52553b2cf052ba37_e65' d='M 134.333621 88.802462 L 133.844824 89.201392 L 134.250828 89.226639 L 134.203925 89.647695 L 133.500158 89.585064 L 133.464269 89.183817 L 134.333621 88.802462 Z ' fill='#3A669E' fill-opacity='1' fill-rule='evenodd' stroke='#FFFFFF' stroke-opacity='1' stroke-width='0.21' stroke-linejoin='round' stroke-linecap='butt' title='Orkney&amp;lt;br/&amp;gt;Winter Year: 2019&amp;lt;br/&amp;gt;Items per Head: 14.54'/>\n <path id='svg_52553b2cf052ba37_e66' d='M 130.975860 86.866817 L 132.662288 88.152039 L 132.623239 89.018148 L 133.196470 89.477088 L 132.108396 90.231079 L 133.341648 89.795828 L 133.334164 90.247874 L 133.580839 90.268650 L 132.391781 90.294061 L 132.389669 90.594589 L 131.594414 90.431241 L 130.662512 88.385629 L 130.018999 88.249473 L 130.424204 87.101290 L 130.975860 86.866817 Z ' fill='#3A669E' fill-opacity='1' fill-rule='evenodd' stroke='#FFFFFF' stroke-opacity='1' stroke-width='0.21' stroke-linejoin='round' stroke-linecap='butt' title='Orkney&amp;lt;br/&amp;gt;Winter Year: 2019&amp;lt;br/&amp;gt;Items per Head: 14.54'/>\n <path id='svg_52553b2cf052ba37_e67' d='M 131.526552 86.700022 L 132.063648 87.129961 L 131.555223 87.071861 L 131.526552 86.700022 Z ' fill='#3A669E' fill-opacity='1' fill-rule='evenodd' stroke='#FFFFFF' stroke-opacity='1' stroke-width='0.21' stroke-linejoin='round' stroke-linecap='butt' title='Orkney&amp;lt;br/&amp;gt;Winter Year: 2019&amp;lt;br/&amp;gt;Items per Head: 14.54'/>\n <path id='svg_52553b2cf052ba37_e68' d='M 161.003783 52.689510 L 161.077879 52.969901 L 160.565416 53.179968 L 161.003783 52.689510 Z ' fill='#3A7CA3' fill-opacity='1' fill-rule='evenodd' stroke='#FFFFFF' stroke-opacity='1' stroke-width='0.21' stroke-linejoin='round' stroke-linecap='butt' title='Shetland&amp;lt;br/&amp;gt;Winter Year: 2019&amp;lt;br/&amp;gt;Items per Head: 13.31'/>\n <path id='svg_52553b2cf052ba37_e69' d='M 159.526254 43.241695 L 159.557981 44.171013 L 159.996040 43.260953 L 160.836228 43.833671 L 160.343330 44.047266 L 160.615251 44.723838 L 160.001619 44.586821 L 160.593512 45.484289 L 159.659354 46.515042 L 160.074116 46.934789 L 159.809373 47.164032 L 159.165409 46.806980 L 158.775442 47.281647 L 158.402701 46.954024 L 158.360660 46.140764 L 158.722551 46.177454 L 158.574972 45.590421 L 158.920128 44.709174 L 158.663056 44.496809 L 159.526254 43.241695 Z ' fill='#3A7CA3' fill-opacity='1' fill-rule='evenodd' stroke='#FFFFFF' stroke-opacity='1' stroke-width='0.21' stroke-linejoin='round' stroke-linecap='butt' title='Shetland&amp;lt;br/&amp;gt;Winter Year: 2019&amp;lt;br/&amp;gt;Items per Head: 13.31'/>\n <path id='svg_52553b2cf052ba37_e70' d='M 159.713803 48.088551 L 160.109821 48.201346 L 160.384777 48.865511 L 160.763322 48.496955 L 160.478563 49.564439 L 160.126658 49.116431 L 159.470616 49.030645 L 159.815936 49.558798 L 159.431300 49.709945 L 158.808973 48.642810 L 158.931613 48.158895 L 159.375518 48.387459 L 159.713803 48.088551 Z ' fill='#3A7CA3' fill-opacity='1' fill-rule='evenodd' stroke='#FFFFFF' stroke-opacity='1' stroke-width='0.21' stroke-linejoin='round' stroke-linecap='butt' title='Shetland&amp;lt;br/&amp;gt;Winter Year: 2019&amp;lt;br/&amp;gt;Items per Head: 13.31'/>\n <path id='svg_52553b2cf052ba37_e71' d='M 159.190614 47.044816 L 159.590959 47.223198 L 159.492518 47.490217 L 159.190614 47.044816 Z ' fill='#3A7CA3' fill-opacity='1' fill-rule='evenodd' stroke='#FFFFFF' stroke-opacity='1' stroke-width='0.21' stroke-linejoin='round' stroke-linecap='butt' title='Shetland&amp;lt;br/&amp;gt;Winter Year: 2019&amp;lt;br/&amp;gt;Items per Head: 13.31'/>\n <path id='svg_52553b2cf052ba37_e72' d='M 159.293996 53.695242 L 158.564349 55.008397 L 157.893559 54.945927 L 158.277826 54.149238 L 159.293996 53.695242 Z ' fill='#3A7CA3' fill-opacity='1' fill-rule='evenodd' stroke='#FFFFFF' stroke-opacity='1' stroke-width='0.21' stroke-linejoin='round' stroke-linecap='butt' title='Shetland&amp;lt;br/&amp;gt;Winter Year: 2019&amp;lt;br/&amp;gt;Items per Head: 13.31'/>\n <path id='svg_52553b2cf052ba37_e73' d='M 158.336254 48.421914 L 158.582354 48.608745 L 158.195464 48.952466 L 158.336254 48.421914 Z ' fill='#3A7CA3' fill-opacity='1' fill-rule='evenodd' stroke='#FFFFFF' stroke-opacity='1' stroke-width='0.21' stroke-linejoin='round' stroke-linecap='butt' title='Shetland&amp;lt;br/&amp;gt;Winter Year: 2019&amp;lt;br/&amp;gt;Items per Head: 13.31'/>\n <path id='svg_52553b2cf052ba37_e74' d='M 157.673421 45.814064 L 158.190275 46.112155 L 158.428951 47.981087 L 157.861238 47.916178 L 157.456034 47.360420 L 158.012118 48.493488 L 157.713003 48.875356 L 157.274348 48.750644 L 158.206026 49.335770 L 158.089845 50.059511 L 157.704492 50.028522 L 158.016856 50.416604 L 157.956130 51.217005 L 157.500331 51.413682 L 156.959872 51.039301 L 157.128206 51.692699 L 156.222288 52.051883 L 156.045363 52.418429 L 156.406926 52.513342 L 156.099709 52.751959 L 156.404875 53.012927 L 156.082379 52.764160 L 155.387759 53.412944 L 156.378418 53.142643 L 156.452762 53.986072 L 156.942195 52.792154 L 157.041969 53.109933 L 157.735152 52.301081 L 156.710757 53.861257 L 156.847241 54.156785 L 157.078780 53.598135 L 157.461673 53.726723 L 157.460750 54.451593 L 156.979930 54.713586 L 156.192365 54.591090 L 156.421999 55.247155 L 156.556739 54.883602 L 156.786865 55.249697 L 157.363847 55.147955 L 157.407120 55.630661 L 156.532046 56.191219 L 156.659444 56.549009 L 157.122464 56.291608 L 157.191986 56.684342 L 156.717423 56.679093 L 156.340888 57.158601 L 156.474377 56.668694 L 156.146981 56.779831 L 156.066095 56.477968 L 156.155082 57.015247 L 155.740606 57.358250 L 156.256700 57.297339 L 155.880187 58.029530 L 156.467938 57.499552 L 155.891733 58.675606 L 156.616726 57.936586 L 156.522060 58.818222 L 156.886350 59.205257 L 156.564061 59.211943 L 156.620213 59.668624 L 156.427577 59.386327 L 156.402311 59.899959 L 156.074607 59.657487 L 156.130164 60.178504 L 155.842574 60.326104 L 156.095977 61.519836 L 156.468450 61.839337 L 156.040809 61.583843 L 155.765831 61.851438 L 156.102785 63.242830 L 155.914314 62.731267 L 155.764047 63.048862 L 155.539850 62.697861 L 155.271682 62.835861 L 155.549468 63.655253 L 155.351193 64.440767 L 155.119530 64.401966 L 155.382284 64.721220 L 155.355048 65.233767 L 155.051853 65.280689 L 155.395553 65.462866 L 155.293625 65.996187 L 155.072053 65.467008 L 154.885098 65.933840 L 154.817297 64.992546 L 154.454421 65.299721 L 154.095217 65.176979 L 153.968167 64.616894 L 154.290744 64.457030 L 154.275384 63.859518 L 154.675666 63.849613 L 154.648185 63.344080 L 154.308915 63.330606 L 154.383771 63.073123 L 154.661721 63.271255 L 154.468777 62.654752 L 154.801219 62.336563 L 155.276542 60.395749 L 155.347174 59.371292 L 154.907144 59.595615 L 155.125149 58.144336 L 154.750563 58.963031 L 155.304290 57.219100 L 154.641048 58.883562 L 155.024945 56.879358 L 154.414328 58.048665 L 154.306680 57.034195 L 153.459846 56.815638 L 154.085372 57.229355 L 154.269538 58.209963 L 154.167920 57.851578 L 153.880699 58.071737 L 153.836258 57.674777 L 153.808406 58.545276 L 153.575535 58.881204 L 153.409620 58.370996 L 153.112864 59.301319 L 152.137484 58.294048 L 152.187011 57.983654 L 152.833950 57.972578 L 152.631736 57.880495 L 153.014281 57.603366 L 152.603640 57.738579 L 152.775726 57.374287 L 152.307970 57.007474 L 152.513814 57.410526 L 152.107541 58.071532 L 151.935435 57.435094 L 151.241882 57.922640 L 150.947278 57.639420 L 151.116801 57.418462 L 150.501549 57.290612 L 150.621810 56.310167 L 150.361455 56.068167 L 151.043873 55.615034 L 151.518950 55.643951 L 151.837959 56.083652 L 151.800326 55.740546 L 152.256351 55.955700 L 152.089494 55.660872 L 152.603128 55.348118 L 152.919675 56.371898 L 153.124247 56.040380 L 152.798778 55.638516 L 153.290467 55.850286 L 153.063029 55.538229 L 153.484272 55.120576 L 154.143124 56.105596 L 154.407457 55.676437 L 154.059635 55.256752 L 154.289021 54.750091 L 154.567957 54.928125 L 154.465598 54.416421 L 155.333227 54.601038 L 154.888482 54.180779 L 154.184244 54.208199 L 154.293123 53.622991 L 154.045997 54.038737 L 153.725840 53.872209 L 153.786566 53.066763 L 153.179517 53.139465 L 153.205767 52.490373 L 153.518295 52.339349 L 153.031138 52.318102 L 153.402135 51.876965 L 152.998427 51.927109 L 153.122216 51.446474 L 152.659321 52.314000 L 152.655054 51.589991 L 152.024258 51.451745 L 151.370469 51.849793 L 151.130418 51.527196 L 151.366881 51.015818 L 151.918187 51.136038 L 151.876413 50.368060 L 152.245359 49.942100 L 152.420500 50.503929 L 153.195205 51.115386 L 153.806151 50.927222 L 153.132347 50.966905 L 152.644248 50.364983 L 153.350864 49.533880 L 153.353838 48.449601 L 154.463527 48.927283 L 154.361109 48.293019 L 156.145444 48.110597 L 156.440354 47.587940 L 156.503622 48.411640 L 156.985980 48.772095 L 156.576734 48.268819 L 156.753722 46.000588 L 157.213828 45.940397 L 157.356362 46.441930 L 157.310115 45.880718 L 157.712470 46.075958 L 157.673421 45.814064 Z ' fill='#3A7CA3' fill-opacity='1' fill-rule='evenodd' stroke='#FFFFFF' stroke-opacity='1' stroke-width='0.21' stroke-linejoin='round' stroke-linecap='butt' title='Shetland&amp;lt;br/&amp;gt;Winter Year: 2019&amp;lt;br/&amp;gt;Items per Head: 13.31'/>\n <path id='svg_52553b2cf052ba37_e75' d='M 157.970897 59.046604 L 158.320463 59.131714 L 158.271448 59.574081 L 157.970897 59.046604 Z ' fill='#3A7CA3' fill-opacity='1' fill-rule='evenodd' stroke='#FFFFFF' stroke-opacity='1' stroke-width='0.21' stroke-linejoin='round' stroke-linecap='butt' title='Shetland&amp;lt;br/&amp;gt;Winter Year: 2019&amp;lt;br/&amp;gt;Items per Head: 13.31'/>\n <path id='svg_52553b2cf052ba37_e76' d='M 157.598873 58.171100 L 157.512328 58.880999 L 157.869585 58.789838 L 157.570163 60.246860 L 157.001464 59.862019 L 157.094634 59.189896 L 156.689080 58.654729 L 156.898101 58.391669 L 157.480131 58.685042 L 157.346211 58.352291 L 157.598873 58.171100 Z ' fill='#3A7CA3' fill-opacity='1' fill-rule='evenodd' stroke='#FFFFFF' stroke-opacity='1' stroke-width='0.21' stroke-linejoin='round' stroke-linecap='butt' title='Shetland&amp;lt;br/&amp;gt;Winter Year: 2019&amp;lt;br/&amp;gt;Items per Head: 13.31'/>\n <path id='svg_52553b2cf052ba37_e77' d='M 154.966004 60.405697 L 154.574704 61.709929 L 154.613465 60.838875 L 154.966004 60.405697 Z ' fill='#3A7CA3' fill-opacity='1' fill-rule='evenodd' stroke='#FFFFFF' stroke-opacity='1' stroke-width='0.21' stroke-linejoin='round' stroke-linecap='butt' title='Shetland&amp;lt;br/&amp;gt;Winter Year: 2019&amp;lt;br/&amp;gt;Items per Head: 13.31'/>\n <path id='svg_52553b2cf052ba37_e78' d='M 154.631069 60.405642 L 154.682783 60.459428 L 154.195606 61.694753 L 154.631069 60.405642 Z ' fill='#3A7CA3' fill-opacity='1' fill-rule='evenodd' stroke='#FFFFFF' stroke-opacity='1' stroke-width='0.21' stroke-linejoin='round' stroke-linecap='butt' title='Shetland&amp;lt;br/&amp;gt;Winter Year: 2019&amp;lt;br/&amp;gt;Items per Head: 13.31'/>\n <path id='svg_52553b2cf052ba37_e79' d='M 154.693259 60.221541 L 154.795169 59.919852 L 154.738505 60.226904 L 154.693259 60.221541 Z ' fill='#3A7CA3' fill-opacity='1' fill-rule='evenodd' stroke='#FFFFFF' stroke-opacity='1' stroke-width='0.21' stroke-linejoin='round' stroke-linecap='butt' title='Shetland&amp;lt;br/&amp;gt;Winter Year: 2019&amp;lt;br/&amp;gt;Items per Head: 13.31'/>\n <path id='svg_52553b2cf052ba37_e80' d='M 153.466737 53.722211 L 154.028379 54.230942 L 153.431770 54.762807 L 152.928392 54.094131 L 153.466737 53.722211 Z ' fill='#3A7CA3' fill-opacity='1' fill-rule='evenodd' stroke='#FFFFFF' stroke-opacity='1' stroke-width='0.21' stroke-linejoin='round' stroke-linecap='butt' title='Shetland&amp;lt;br/&amp;gt;Winter Year: 2019&amp;lt;br/&amp;gt;Items per Head: 13.31'/>\n <path id='svg_52553b2cf052ba37_e81' d='M 152.950232 54.845149 L 153.365323 55.168977 L 152.969409 55.541102 L 152.950232 54.845149 Z ' fill='#3A7CA3' fill-opacity='1' fill-rule='evenodd' stroke='#FFFFFF' stroke-opacity='1' stroke-width='0.21' stroke-linejoin='round' stroke-linecap='butt' title='Shetland&amp;lt;br/&amp;gt;Winter Year: 2019&amp;lt;br/&amp;gt;Items per Head: 13.31'/>\n <path id='svg_52553b2cf052ba37_e82' d='M 151.717267 57.860296 L 151.902458 58.256005 L 151.483163 58.104346 L 151.717267 57.860296 Z ' fill='#3A7CA3' fill-opacity='1' fill-rule='evenodd' stroke='#FFFFFF' stroke-opacity='1' stroke-width='0.21' stroke-linejoin='round' stroke-linecap='butt' title='Shetland&amp;lt;br/&amp;gt;Winter Year: 2019&amp;lt;br/&amp;gt;Items per Head: 13.31'/>\n <path id='svg_52553b2cf052ba37_e83' d='M 151.540279 72.850713 L 151.536793 73.542768 L 151.001011 73.796069 L 151.172666 72.885475 L 151.540279 72.850713 Z ' fill='#3A7CA3' fill-opacity='1' fill-rule='evenodd' stroke='#FFFFFF' stroke-opacity='1' stroke-width='0.21' stroke-linejoin='round' stroke-linecap='butt' title='Shetland&amp;lt;br/&amp;gt;Winter Year: 2019&amp;lt;br/&amp;gt;Items per Head: 13.31'/>\n <path id='svg_52553b2cf052ba37_e84' d='M 150.182827 54.748349 L 150.547940 55.085835 L 150.741989 54.818488 L 150.788420 55.323590 L 150.185597 55.360423 L 149.955184 54.965842 L 150.182827 54.748349 Z ' fill='#3A7CA3' fill-opacity='1' fill-rule='evenodd' stroke='#FFFFFF' stroke-opacity='1' stroke-width='0.21' stroke-linejoin='round' stroke-linecap='butt' title='Shetland&amp;lt;br/&amp;gt;Winter Year: 2019&amp;lt;br/&amp;gt;Items per Head: 13.31'/>\n <path id='svg_52553b2cf052ba37_e85' d='M 146.159385 59.065165 L 146.545147 59.480768 L 146.263670 60.165440 L 145.658876 59.616226 L 146.159385 59.065165 Z ' fill='#3A7CA3' fill-opacity='1' fill-rule='evenodd' stroke='#FFFFFF' stroke-opacity='1' stroke-width='0.21' stroke-linejoin='round' stroke-linecap='butt' title='Shetland&amp;lt;br/&amp;gt;Winter Year: 2019&amp;lt;br/&amp;gt;Items per Head: 13.31'/>\n <path id='svg_52553b2cf052ba37_e86' d='M 102.113984 81.143391 L 102.241034 81.508440 L 101.906849 81.563814 L 102.113984 81.143391 Z ' fill='#3A6FA0' fill-opacity='1' fill-rule='evenodd' stroke='#FFFFFF' stroke-opacity='1' stroke-width='0.21' stroke-linejoin='round' stroke-linecap='butt' title='Western Isles&amp;lt;br/&amp;gt;Winter Year: 2019&amp;lt;br/&amp;gt;Items per Head: 14.02'/>\n <path id='svg_52553b2cf052ba37_e87' d='M 90.339009 105.478333 L 89.355722 106.418920 L 89.731723 107.219733 L 89.439028 107.392660 L 89.883670 107.398054 L 90.242382 108.153583 L 89.759718 108.279813 L 90.285246 109.073489 L 88.636272 108.604586 L 88.924102 108.954744 L 88.496604 108.954642 L 88.578063 109.286221 L 88.941350 109.313088 L 89.331912 110.273127 L 88.596070 110.057297 L 88.624474 110.737028 L 87.842283 110.002621 L 88.129791 110.467219 L 87.955388 110.730875 L 87.768023 110.488691 L 87.796344 111.041167 L 87.495651 110.857003 L 87.584492 111.363969 L 86.987411 111.147257 L 87.249898 111.562286 L 86.776483 111.661629 L 86.651976 112.100939 L 86.284875 112.000797 L 86.268776 112.295256 L 84.515716 109.674898 L 85.119895 109.792615 L 85.141736 110.202578 L 85.853870 109.832239 L 86.274723 109.099943 L 86.671253 109.105378 L 86.865776 108.273763 L 88.486371 108.505999 L 87.896324 107.946858 L 88.130469 107.730945 L 87.354614 107.631008 L 87.517636 107.355089 L 87.260255 107.534742 L 86.355013 106.886265 L 86.398184 107.143441 L 86.057436 107.171640 L 85.389067 106.773881 L 85.315339 106.144580 L 85.016533 106.252659 L 85.426188 105.527687 L 85.801595 105.820035 L 86.120500 105.352236 L 87.599976 105.013746 L 85.989965 105.300863 L 85.734225 105.101214 L 86.251241 104.847320 L 85.794622 104.784769 L 86.204995 104.229607 L 85.766114 104.656284 L 85.457257 104.551385 L 84.972337 103.182961 L 85.572514 102.374417 L 85.469665 101.822228 L 86.232578 101.860004 L 85.966995 101.555822 L 86.542666 100.503022 L 86.498039 100.775827 L 87.077012 101.097254 L 87.294298 100.754150 L 87.881455 101.306544 L 87.834860 101.538944 L 87.210031 101.492924 L 88.020810 101.922514 L 88.258604 103.573235 L 88.077311 102.101038 L 88.266294 102.294227 L 88.188363 101.923847 L 88.417032 102.078069 L 88.529500 101.666794 L 89.755431 101.923457 L 89.900200 102.527101 L 90.106413 102.440453 L 90.244004 102.135492 L 89.674752 101.873498 L 89.904548 101.488842 L 89.130110 100.483951 L 89.047461 100.012667 L 89.573829 99.897984 L 88.984806 99.852190 L 89.280538 99.329738 L 89.857851 99.319380 L 91.195224 98.307782 L 91.324612 98.582451 L 92.462664 98.153005 L 92.831774 97.451988 L 95.548503 95.713161 L 96.119766 94.927155 L 96.999392 96.124682 L 96.804459 96.578432 L 97.077222 97.263104 L 96.473864 98.316211 L 97.044203 98.972686 L 96.156168 99.496327 L 95.509169 100.558806 L 95.055010 100.601484 L 94.812025 101.368396 L 95.374901 101.942385 L 96.994469 100.766699 L 97.249061 100.895082 L 96.978001 101.748847 L 95.873604 102.618897 L 95.328243 102.007068 L 94.630526 102.384075 L 94.119560 101.792325 L 94.300485 103.144916 L 93.625205 103.411443 L 94.263570 103.368663 L 94.235986 103.628301 L 92.835159 103.303077 L 93.599404 103.783446 L 93.035198 104.198679 L 91.056567 104.524354 L 93.430066 104.523698 L 93.859554 104.048927 L 93.845301 104.673205 L 94.077251 104.510265 L 94.174255 104.885670 L 94.070687 105.516304 L 93.339113 105.472908 L 94.243779 105.736770 L 93.826228 106.617504 L 93.248834 106.199645 L 93.087228 106.433748 L 92.981178 106.126634 L 91.619113 106.362399 L 92.776812 106.514757 L 93.052446 106.828637 L 92.719287 107.970956 L 92.123004 108.179732 L 91.815173 107.475166 L 91.844397 108.405733 L 91.469504 108.190190 L 91.385829 108.510327 L 90.696336 107.282489 L 91.056772 108.324316 L 90.737353 108.078113 L 90.511350 108.280941 L 89.960597 107.257981 L 89.891238 106.117611 L 90.339009 105.478333 Z M 90.462089 105.302613 L 90.556469 105.167867 L 91.488823 105.240856 L 90.269003 105.051296 L 90.462089 105.302613 Z ' fill='#3A6FA0' fill-opacity='1' fill-rule='evenodd' stroke='#FFFFFF' stroke-opacity='1' stroke-width='0.21' stroke-linejoin='round' stroke-linecap='butt' title='Western Isles&amp;lt;br/&amp;gt;Winter Year: 2019&amp;lt;br/&amp;gt;Items per Head: 14.02'/>\n <path id='svg_52553b2cf052ba37_e88' d='M 89.814516 109.103000 L 90.451671 109.336303 L 90.534526 109.679306 L 89.925343 109.759617 L 89.814516 109.103000 Z ' fill='#3A6FA0' fill-opacity='1' fill-rule='evenodd' stroke='#FFFFFF' stroke-opacity='1' stroke-width='0.21' stroke-linejoin='round' stroke-linecap='butt' title='Western Isles&amp;lt;br/&amp;gt;Winter Year: 2019&amp;lt;br/&amp;gt;Items per Head: 14.02'/>\n <path id='svg_52553b2cf052ba37_e89' d='M 88.165393 100.229543 L 88.657390 100.357208 L 88.773858 100.939216 L 89.022338 100.773016 L 89.366879 101.707278 L 88.365268 101.484988 L 88.559668 101.075248 L 88.165393 100.229543 Z ' fill='#3A6FA0' fill-opacity='1' fill-rule='evenodd' stroke='#FFFFFF' stroke-opacity='1' stroke-width='0.21' stroke-linejoin='round' stroke-linecap='butt' title='Western Isles&amp;lt;br/&amp;gt;Winter Year: 2019&amp;lt;br/&amp;gt;Items per Head: 14.02'/>\n <path id='svg_52553b2cf052ba37_e90' d='M 86.180692 107.866055 L 86.425768 108.557190 L 86.079997 108.823901 L 85.663162 108.468182 L 85.261403 108.880402 L 85.184086 108.441623 L 86.180692 107.866055 Z ' fill='#3A6FA0' fill-opacity='1' fill-rule='evenodd' stroke='#FFFFFF' stroke-opacity='1' stroke-width='0.21' stroke-linejoin='round' stroke-linecap='butt' title='Western Isles&amp;lt;br/&amp;gt;Winter Year: 2019&amp;lt;br/&amp;gt;Items per Head: 14.02'/>\n <path id='svg_52553b2cf052ba37_e91' d='M 84.896046 105.100393 L 85.171576 105.910025 L 84.580626 105.764559 L 84.381900 105.343418 L 84.896046 105.100393 Z ' fill='#3A6FA0' fill-opacity='1' fill-rule='evenodd' stroke='#FFFFFF' stroke-opacity='1' stroke-width='0.21' stroke-linejoin='round' stroke-linecap='butt' title='Western Isles&amp;lt;br/&amp;gt;Winter Year: 2019&amp;lt;br/&amp;gt;Items per Head: 14.02'/>\n <path id='svg_52553b2cf052ba37_e92' d='M 85.060298 111.167787 L 85.076519 111.702360 L 84.811141 111.287372 L 85.060298 111.167787 Z ' fill='#3A6FA0' fill-opacity='1' fill-rule='evenodd' stroke='#FFFFFF' stroke-opacity='1' stroke-width='0.21' stroke-linejoin='round' stroke-linecap='butt' title='Western Isles&amp;lt;br/&amp;gt;Winter Year: 2019&amp;lt;br/&amp;gt;Items per Head: 14.02'/>\n <path id='svg_52553b2cf052ba37_e93' d='M 80.985707 119.052244 L 81.468751 119.359257 L 81.218601 119.045888 L 80.490347 118.813219 L 80.467685 117.762593 L 81.450838 117.250397 L 81.574074 117.313015 L 81.415256 117.103248 L 82.186270 117.125809 L 81.403872 117.073613 L 81.708135 116.625178 L 81.402868 116.219213 L 81.383980 117.039264 L 80.929822 117.285466 L 80.977196 116.695335 L 80.538828 116.121920 L 80.811078 115.769074 L 80.509399 116.088493 L 80.152450 115.548997 L 80.598507 115.449123 L 81.500550 115.939704 L 80.583844 115.415099 L 79.708853 115.553571 L 79.039376 114.565414 L 79.445690 114.442180 L 79.792630 113.381998 L 80.358355 113.346395 L 80.900391 113.818929 L 80.424084 113.396722 L 81.258879 113.265920 L 81.231071 113.461046 L 81.657767 113.332675 L 82.050298 112.697530 L 82.175574 113.407898 L 82.314960 113.318524 L 82.513460 113.709845 L 82.363770 113.267048 L 82.670965 113.429024 L 82.733024 112.943631 L 83.357485 113.000111 L 83.633615 112.753652 L 83.527416 112.963852 L 83.991420 113.584005 L 83.568536 113.858819 L 84.198452 114.155062 L 84.610650 113.963534 L 83.944456 113.737717 L 84.409996 113.642864 L 85.051500 114.239045 L 84.529560 114.943508 L 84.153805 114.497697 L 84.403822 114.373312 L 83.998699 114.574665 L 83.765417 114.307542 L 83.826736 114.612298 L 83.393703 114.184184 L 83.799152 114.063492 L 83.132834 114.126556 L 83.494233 114.324155 L 83.328321 114.571321 L 83.910514 114.745601 L 83.531600 114.784138 L 83.902003 114.878435 L 83.499115 115.205504 L 84.492133 115.252569 L 84.252286 115.876128 L 82.532498 116.027748 L 83.954606 116.104489 L 84.000546 116.605202 L 83.547533 117.018263 L 82.855560 116.864326 L 83.176518 117.157596 L 82.479540 117.125192 L 82.214652 116.833523 L 82.353310 117.196459 L 82.958513 117.161596 L 83.021167 117.926661 L 82.256347 117.405215 L 81.891268 117.474187 L 82.370312 117.717598 L 82.249250 118.010541 L 82.482862 117.793234 L 83.039623 118.208038 L 82.616639 118.154920 L 82.804701 118.520687 L 82.425910 118.309554 L 82.396993 118.636457 L 82.236720 118.365542 L 82.086290 118.630511 L 82.970818 118.946750 L 82.536656 119.242379 L 83.002504 119.285446 L 82.452571 119.305545 L 82.591002 119.583434 L 81.577908 119.071789 L 82.196420 119.597995 L 81.812863 119.577967 L 81.835985 119.592662 L 81.412610 119.605296 L 82.048452 119.998730 L 81.659511 120.131520 L 82.415450 120.694580 L 81.962215 120.663590 L 82.091664 120.856923 L 82.602590 120.727699 L 82.098639 121.123845 L 82.477592 121.296912 L 82.530810 121.805315 L 82.873608 121.890015 L 82.046403 122.723989 L 81.802761 123.531508 L 81.433153 123.473414 L 81.858545 123.861898 L 81.980570 124.931514 L 81.662074 125.229092 L 81.033102 124.848331 L 81.393722 125.262314 L 80.930417 124.968183 L 80.657326 125.129852 L 80.812513 125.462559 L 81.918531 125.561635 L 81.948105 125.940200 L 82.310857 126.014153 L 82.067526 126.501330 L 81.448479 126.164069 L 80.259073 126.178056 L 79.798741 125.529766 L 79.837954 123.552550 L 79.461091 122.959036 L 79.889716 122.697594 L 79.779114 121.929923 L 80.301485 121.557429 L 80.072384 119.650168 L 80.985707 119.052244 Z M 82.491937 116.025559 L 82.575683 115.647848 L 81.990906 115.998522 L 82.491937 116.025559 Z M 81.407377 123.449875 L 81.563429 123.426812 L 81.397310 123.189940 L 80.832221 123.340861 L 80.682511 123.042873 L 80.792067 123.375972 L 81.307792 123.358930 L 81.407377 123.449875 Z ' fill='#3A6FA0' fill-opacity='1' fill-rule='evenodd' stroke='#FFFFFF' stroke-opacity='1' stroke-width='0.21' stroke-linejoin='round' stroke-linecap='butt' title='Western Isles&amp;lt;br/&amp;gt;Winter Year: 2019&amp;lt;br/&amp;gt;Items per Head: 14.02'/>\n <path id='svg_52553b2cf052ba37_e94' d='M 83.660211 112.701010 L 83.096432 112.546382 L 83.516138 111.943845 L 83.999130 111.891754 L 84.436965 112.640209 L 83.842712 112.339782 L 83.660211 112.701010 Z ' fill='#3A6FA0' fill-opacity='1' fill-rule='evenodd' stroke='#FFFFFF' stroke-opacity='1' stroke-width='0.21' stroke-linejoin='round' stroke-linecap='butt' title='Western Isles&amp;lt;br/&amp;gt;Winter Year: 2019&amp;lt;br/&amp;gt;Items per Head: 14.02'/>\n <path id='svg_52553b2cf052ba37_e95' d='M 83.323767 117.250909 L 83.624934 117.547665 L 83.295466 118.043273 L 83.004164 117.526625 L 83.384370 117.532592 L 83.124324 117.337660 L 83.323767 117.250909 Z ' fill='#3A6FA0' fill-opacity='1' fill-rule='evenodd' stroke='#FFFFFF' stroke-opacity='1' stroke-width='0.21' stroke-linejoin='round' stroke-linecap='butt' title='Western Isles&amp;lt;br/&amp;gt;Winter Year: 2019&amp;lt;br/&amp;gt;Items per Head: 14.02'/>\n <path id='svg_52553b2cf052ba37_e96' d='M 83.260807 110.775276 L 83.614885 111.133250 L 83.040957 111.364894 L 82.763991 111.063521 L 83.260807 110.775276 Z ' fill='#3A6FA0' fill-opacity='1' fill-rule='evenodd' stroke='#FFFFFF' stroke-opacity='1' stroke-width='0.21' stroke-linejoin='round' stroke-linecap='butt' title='Western Isles&amp;lt;br/&amp;gt;Winter Year: 2019&amp;lt;br/&amp;gt;Items per Head: 14.02'/>\n <path id='svg_52553b2cf052ba37_e97' d='M 83.097355 119.351483 L 83.088434 119.718685 L 82.695595 119.793132 L 82.878222 119.898853 L 82.513891 119.753550 L 83.097355 119.351483 Z ' fill='#3A6FA0' fill-opacity='1' fill-rule='evenodd' stroke='#FFFFFF' stroke-opacity='1' stroke-width='0.21' stroke-linejoin='round' stroke-linecap='butt' title='Western Isles&amp;lt;br/&amp;gt;Winter Year: 2019&amp;lt;br/&amp;gt;Items per Head: 14.02'/>\n <path id='svg_52553b2cf052ba37_e98' d='M 82.424578 112.196305 L 82.497382 112.681942 L 82.251793 112.504546 L 82.424578 112.196305 Z ' fill='#3A6FA0' fill-opacity='1' fill-rule='evenodd' stroke='#FFFFFF' stroke-opacity='1' stroke-width='0.21' stroke-linejoin='round' stroke-linecap='butt' title='Western Isles&amp;lt;br/&amp;gt;Winter Year: 2019&amp;lt;br/&amp;gt;Items per Head: 14.02'/>\n <path id='svg_52553b2cf052ba37_e99' d='M 82.209320 119.493483 L 82.465552 119.567600 L 82.256367 119.820593 L 82.209320 119.493483 Z ' fill='#3A6FA0' fill-opacity='1' fill-rule='evenodd' stroke='#FFFFFF' stroke-opacity='1' stroke-width='0.21' stroke-linejoin='round' stroke-linecap='butt' title='Western Isles&amp;lt;br/&amp;gt;Winter Year: 2019&amp;lt;br/&amp;gt;Items per Head: 14.02'/>\n <path id='svg_52553b2cf052ba37_e100' d='M 80.959455 126.403814 L 81.561173 126.567162 L 81.193027 127.423409 L 80.959455 126.403814 Z ' fill='#3A6FA0' fill-opacity='1' fill-rule='evenodd' stroke='#FFFFFF' stroke-opacity='1' stroke-width='0.21' stroke-linejoin='round' stroke-linecap='butt' title='Western Isles&amp;lt;br/&amp;gt;Winter Year: 2019&amp;lt;br/&amp;gt;Items per Head: 14.02'/>\n <path id='svg_52553b2cf052ba37_e101' d='M 80.753716 127.990631 L 80.788620 128.252955 L 80.444183 128.107753 L 80.753716 127.990631 Z ' fill='#3A6FA0' fill-opacity='1' fill-rule='evenodd' stroke='#FFFFFF' stroke-opacity='1' stroke-width='0.21' stroke-linejoin='round' stroke-linecap='butt' title='Western Isles&amp;lt;br/&amp;gt;Winter Year: 2019&amp;lt;br/&amp;gt;Items per Head: 14.02'/>\n <path id='svg_52553b2cf052ba37_e102' d='M 80.402344 128.118214 L 80.646087 128.441119 L 80.249763 128.272231 L 80.402344 128.118214 Z ' fill='#3A6FA0' fill-opacity='1' fill-rule='evenodd' stroke='#FFFFFF' stroke-opacity='1' stroke-width='0.21' stroke-linejoin='round' stroke-linecap='butt' title='Western Isles&amp;lt;br/&amp;gt;Winter Year: 2019&amp;lt;br/&amp;gt;Items per Head: 14.02'/>\n <path id='svg_52553b2cf052ba37_e103' d='M 80.008481 127.100484 L 80.210283 127.353045 L 79.873125 127.551567 L 80.008481 127.100484 Z ' fill='#3A6FA0' fill-opacity='1' fill-rule='evenodd' stroke='#FFFFFF' stroke-opacity='1' stroke-width='0.21' stroke-linejoin='round' stroke-linecap='butt' title='Western Isles&amp;lt;br/&amp;gt;Winter Year: 2019&amp;lt;br/&amp;gt;Items per Head: 14.02'/>\n <path id='svg_52553b2cf052ba37_e104' d='M 79.249772 127.110635 L 79.596386 127.306471 L 79.456189 128.070449 L 79.880406 128.471368 L 79.426985 128.206133 L 79.695872 128.448666 L 79.391609 128.440914 L 80.007764 128.989307 L 79.510454 128.668803 L 79.675834 128.966318 L 79.187488 129.325707 L 79.221882 129.648038 L 78.632981 129.740223 L 78.380134 129.369082 L 78.368423 129.628146 L 78.030876 129.578229 L 77.910225 129.761286 L 78.618933 129.996886 L 78.180033 129.905541 L 77.953765 130.154370 L 78.316332 130.298770 L 77.734919 130.430025 L 77.804954 129.994324 L 77.363100 129.822463 L 77.560495 129.493816 L 78.023431 129.579397 L 77.649295 129.340616 L 78.307186 128.860228 L 78.439055 128.274673 L 78.182925 128.085297 L 79.025411 127.959992 L 79.249772 127.110635 Z ' fill='#3A6FA0' fill-opacity='1' fill-rule='evenodd' stroke='#FFFFFF' stroke-opacity='1' stroke-width='0.21' stroke-linejoin='round' stroke-linecap='butt' title='Western Isles&amp;lt;br/&amp;gt;Winter Year: 2019&amp;lt;br/&amp;gt;Items per Head: 14.02'/>\n <path id='svg_52553b2cf052ba37_e105' d='M 78.004296 130.610601 L 78.443791 131.025487 L 77.894269 130.950117 L 78.004296 130.610601 Z ' fill='#3A6FA0' fill-opacity='1' fill-rule='evenodd' stroke='#FFFFFF' stroke-opacity='1' stroke-width='0.21' stroke-linejoin='round' stroke-linecap='butt' title='Western Isles&amp;lt;br/&amp;gt;Winter Year: 2019&amp;lt;br/&amp;gt;Items per Head: 14.02'/>\n <path id='svg_52553b2cf052ba37_e106' d='M 77.701080 116.043478 L 77.888731 116.352642 L 78.320024 116.238820 L 78.036803 116.686927 L 77.960408 116.387814 L 77.255535 116.387197 L 77.701080 116.043478 Z ' fill='#3A6FA0' fill-opacity='1' fill-rule='evenodd' stroke='#FFFFFF' stroke-opacity='1' stroke-width='0.21' stroke-linejoin='round' stroke-linecap='butt' title='Western Isles&amp;lt;br/&amp;gt;Winter Year: 2019&amp;lt;br/&amp;gt;Items per Head: 14.02'/>\n <path id='svg_52553b2cf052ba37_e107' d='M 77.300345 131.499538 L 77.631556 131.819263 L 77.011793 131.748511 L 77.300345 131.499538 Z ' fill='#3A6FA0' fill-opacity='1' fill-rule='evenodd' stroke='#FFFFFF' stroke-opacity='1' stroke-width='0.21' stroke-linejoin='round' stroke-linecap='butt' title='Western Isles&amp;lt;br/&amp;gt;Winter Year: 2019&amp;lt;br/&amp;gt;Items per Head: 14.02'/>\n <path id='svg_52553b2cf052ba37_e108' d='M 76.331734 133.049256 L 76.724162 133.219783 L 76.109114 133.140724 L 76.331734 133.049256 Z ' fill='#3A6FA0' fill-opacity='1' fill-rule='evenodd' stroke='#FFFFFF' stroke-opacity='1' stroke-width='0.21' stroke-linejoin='round' stroke-linecap='butt' title='Western Isles&amp;lt;br/&amp;gt;Winter Year: 2019&amp;lt;br/&amp;gt;Items per Head: 14.02'/>\n <path id='svg_52553b2cf052ba37_e109' d='M 76.653222 132.172132 L 76.631259 132.787364 L 76.068713 132.805513 L 76.195967 132.293727 L 76.653222 132.172132 Z ' fill='#3A6FA0' fill-opacity='1' fill-rule='evenodd' stroke='#FFFFFF' stroke-opacity='1' stroke-width='0.21' stroke-linejoin='round' stroke-linecap='butt' title='Western Isles&amp;lt;br/&amp;gt;Winter Year: 2019&amp;lt;br/&amp;gt;Items per Head: 14.02'/>\n <path id='svg_52553b2cf052ba37_e110' d='M 66.495181 108.326058 L 67.103461 108.446136 L 67.259531 108.758377 L 66.946367 108.951361 L 67.199748 109.182286 L 66.515690 108.756837 L 66.495181 108.326058 Z ' fill='#3A6FA0' fill-opacity='1' fill-rule='evenodd' stroke='#FFFFFF' stroke-opacity='1' stroke-width='0.21' stroke-linejoin='round' stroke-linecap='butt' title='Western Isles&amp;lt;br/&amp;gt;Winter Year: 2019&amp;lt;br/&amp;gt;Items per Head: 14.02'/>\n <path id='svg_52553b2cf052ba37_e111' d='M 135.722306 143.575136 L 138.096812 143.776282 L 137.189930 143.843038 L 137.080202 144.069504 L 136.786222 143.727781 L 136.852087 146.011899 L 138.644098 146.667907 L 139.571427 147.554999 L 139.319194 148.010120 L 136.714853 149.752617 L 135.933583 149.661992 L 134.997190 149.045037 L 132.322423 151.251066 L 132.024579 152.456980 L 130.688188 152.554581 L 130.130709 153.062182 L 129.318698 153.231562 L 129.209840 153.685720 L 128.272154 153.525181 L 128.275825 153.175123 L 127.924702 153.040218 L 125.156291 152.447219 L 124.787529 151.972509 L 125.095011 151.374362 L 126.224144 151.233940 L 125.783171 150.934230 L 126.849281 150.589238 L 127.014291 150.142135 L 128.942842 150.655028 L 129.541646 150.497708 L 129.527063 150.073636 L 129.865432 149.885287 L 130.487206 149.951201 L 130.333270 149.611992 L 130.951045 149.376166 L 130.911156 148.829351 L 130.590691 148.710914 L 130.724775 148.511018 L 129.615024 148.354641 L 129.802286 148.004152 L 129.422758 147.688159 L 130.043220 147.228463 L 130.573958 147.255617 L 130.496968 146.677053 L 131.073541 146.091415 L 130.812306 145.840371 L 135.722306 143.575136 Z ' fill='#392E59' fill-opacity='1' fill-rule='evenodd' stroke='#FFFFFF' stroke-opacity='1' stroke-width='0.21' stroke-linejoin='round' stroke-linecap='butt' title='Fife&amp;lt;br/&amp;gt;Winter Year: 2019&amp;lt;br/&amp;gt;Items per Head: 17.97'/>\n <path id='svg_52553b2cf052ba37_e112' d='M 136.096011 131.551014 L 137.455923 132.036961 L 138.422177 133.068022 L 138.735442 133.741108 L 138.608147 134.731643 L 139.275614 136.080932 L 140.352798 136.048939 L 141.200411 136.915399 L 141.714494 136.765298 L 141.484615 138.299081 L 140.771846 138.840379 L 140.695083 139.520992 L 140.977730 139.709650 L 140.241252 141.012939 L 138.115288 142.587081 L 137.798783 143.413510 L 136.781380 143.062344 L 133.976486 143.598043 L 134.229847 143.711783 L 133.367367 143.913175 L 133.392182 144.369078 L 133.076454 144.529145 L 133.310660 144.570163 L 132.972026 144.561263 L 133.202889 144.651170 L 130.962488 145.558525 L 131.486560 145.550957 L 130.812306 145.840371 L 131.073541 146.091415 L 130.496968 146.677053 L 130.573958 147.255617 L 130.043220 147.228463 L 129.422758 147.688159 L 129.802286 148.004152 L 129.615024 148.354641 L 130.724775 148.511018 L 130.951045 149.376166 L 130.333270 149.611992 L 130.487206 149.951201 L 129.527063 150.073636 L 129.541646 150.497708 L 127.374706 150.437804 L 127.076390 150.126261 L 126.849281 150.589238 L 126.095823 150.702547 L 126.007800 150.104441 L 126.711875 149.815004 L 126.952827 149.295056 L 126.410771 149.065034 L 125.780792 149.437835 L 124.891650 149.406251 L 124.347562 148.748854 L 123.628230 149.223420 L 123.509486 148.527055 L 123.172636 148.780848 L 122.834391 148.322997 L 122.326396 148.447790 L 121.532271 147.353463 L 121.118451 147.474317 L 120.612878 146.984003 L 120.177280 147.191343 L 119.230919 146.614441 L 118.625203 146.024004 L 118.625511 144.763455 L 119.186415 144.728898 L 119.167548 143.103503 L 119.665594 143.418410 L 120.479779 142.972660 L 119.806180 141.925193 L 117.982367 142.671187 L 117.598244 141.196632 L 117.178335 140.997804 L 116.706232 141.438119 L 115.562682 141.743182 L 115.363751 141.475546 L 115.082272 141.887151 L 114.467226 141.856900 L 113.734870 142.572233 L 113.122182 142.234460 L 113.520761 141.345728 L 113.005489 140.754984 L 114.248093 140.216124 L 114.744806 140.318360 L 113.837823 139.137075 L 113.935237 138.413539 L 113.490308 138.744134 L 112.847779 138.661074 L 112.852187 137.878269 L 113.603822 137.949945 L 114.443230 137.560696 L 114.527724 136.039689 L 115.078273 135.775030 L 115.435222 135.036622 L 116.394504 135.789283 L 117.287542 134.485973 L 117.828452 134.694851 L 118.181811 134.079291 L 119.503270 133.687682 L 119.844530 132.755883 L 120.312122 133.101244 L 122.109377 133.295870 L 122.813430 132.001994 L 123.331781 132.604223 L 124.252404 132.275986 L 124.733019 132.637653 L 125.273516 132.411137 L 125.641644 132.877908 L 126.086675 132.458102 L 127.237198 132.517678 L 127.492731 133.595374 L 127.785900 133.415843 L 128.675247 133.879436 L 129.130226 133.575400 L 129.845662 133.862518 L 130.950655 133.138366 L 130.967370 132.652521 L 132.998215 133.604112 L 133.487956 132.013992 L 136.096011 131.551014 Z ' fill='#3C4A81' fill-opacity='1' fill-rule='evenodd' stroke='#FFFFFF' stroke-opacity='1' stroke-width='0.21' stroke-linejoin='round' stroke-linecap='butt' title='Tayside&amp;lt;br/&amp;gt;Winter Year: 2019&amp;lt;br/&amp;gt;Items per Head: 16.21'/>\n <path id='svg_52553b2cf052ba37_e113' d='M 113.999839 151.717755 L 115.387213 152.035922 L 115.076529 152.335488 L 115.258152 153.166735 L 116.100106 154.114572 L 116.716915 153.928683 L 117.099419 154.421378 L 117.722977 154.479519 L 117.895207 153.675692 L 117.647465 152.926519 L 118.892058 153.321882 L 119.358072 152.875864 L 119.958229 154.112009 L 119.811512 154.653391 L 120.740462 154.425829 L 120.465381 154.882757 L 120.624526 155.353608 L 118.867223 155.536995 L 119.232006 156.223145 L 120.290055 156.242565 L 120.355230 157.158861 L 119.995246 157.188864 L 119.877466 157.560334 L 119.084345 157.603032 L 118.699956 157.102791 L 118.340280 157.231050 L 118.659759 158.104032 L 117.630074 158.788214 L 118.380025 159.852436 L 118.357466 160.582207 L 117.984315 160.908805 L 116.665932 160.391991 L 116.282650 159.794889 L 116.067496 160.001778 L 115.590143 159.495158 L 115.207722 159.539333 L 115.353681 159.125454 L 114.912156 158.841925 L 114.414785 159.235850 L 113.915487 158.328414 L 113.327593 158.808229 L 113.118983 158.467995 L 112.752456 158.827323 L 112.475243 157.810393 L 112.029802 157.761685 L 112.019546 157.402993 L 111.248840 156.938067 L 111.678820 156.727344 L 111.092361 155.724688 L 109.893890 156.057477 L 110.124097 154.540348 L 111.214550 153.911867 L 112.463963 154.403742 L 112.601226 154.801296 L 113.485365 154.794897 L 113.526504 153.654979 L 112.981596 153.282443 L 113.742745 152.912081 L 113.521275 152.226056 L 113.840467 151.453319 L 113.999839 151.717755 Z ' fill='#DBF4E4' fill-opacity='1' fill-rule='evenodd' stroke='#FFFFFF' stroke-opacity='1' stroke-width='0.21' stroke-linejoin='round' stroke-linecap='butt' title='Greater Glasgow and Clyde&amp;lt;br/&amp;gt;Winter Year: 2019&amp;lt;br/&amp;gt;Items per Head: 5.57'/>\n <path id='svg_52553b2cf052ba37_e114' d='M 120.797679 152.910913 L 121.178746 152.982487 L 121.035864 153.396368 L 121.570580 153.456334 L 121.563054 153.978478 L 122.102835 154.050462 L 122.185257 154.498634 L 123.178316 154.610075 L 122.608428 155.080826 L 123.802509 155.870235 L 123.612807 156.342811 L 124.383985 156.618014 L 125.034779 156.420210 L 124.529821 156.934438 L 124.955904 157.971487 L 124.572745 158.723531 L 126.541757 158.096998 L 126.998418 158.667379 L 128.224472 159.152565 L 128.454269 160.106454 L 128.712040 160.420457 L 129.005658 160.294823 L 127.822302 161.806047 L 127.858459 162.550974 L 127.231885 162.652306 L 127.744678 163.776085 L 127.746626 164.817604 L 127.023500 166.488731 L 127.425772 167.203224 L 126.488334 167.805782 L 126.517967 169.098838 L 126.074062 169.153697 L 125.645951 169.921943 L 124.730147 169.175436 L 124.754101 168.260782 L 124.206875 167.980002 L 123.314963 166.370604 L 122.417311 165.996223 L 121.449724 166.092509 L 120.852109 165.650655 L 120.750181 165.202547 L 121.660037 163.752398 L 120.637181 162.917193 L 120.077608 163.466819 L 119.225895 163.323157 L 118.230826 163.804694 L 117.990878 163.526190 L 118.896222 162.579583 L 118.512222 162.338547 L 118.022256 160.967971 L 118.357466 160.582207 L 118.353713 159.721552 L 117.631078 158.782144 L 118.659759 158.104032 L 118.294424 157.676349 L 118.390034 157.173258 L 118.707914 157.107713 L 119.084345 157.603032 L 119.877466 157.560334 L 119.995246 157.188864 L 120.355230 157.158861 L 120.290055 156.242565 L 119.232006 156.223145 L 118.867223 155.536995 L 120.624526 155.353608 L 120.465381 154.882757 L 120.737283 154.419266 L 119.811512 154.653391 L 119.958229 154.112009 L 119.468202 153.424054 L 120.797679 152.910913 Z ' fill='#DEF5E5' fill-opacity='1' fill-rule='evenodd' stroke='#FFFFFF' stroke-opacity='1' stroke-width='0.21' stroke-linejoin='round' stroke-linecap='butt' title='Lanarkshire&amp;lt;br/&amp;gt;Winter Year: 2019&amp;lt;br/&amp;gt;Items per Head: 5.49'/>\n <\/g>\n <g clip-path='url(#svg_52553b2cf052ba37_c4)'>\n <path id='svg_52553b2cf052ba37_e115' d='M 104.970601 327.974751 L 106.237508 329.007554 L 106.603070 330.617670 L 106.262959 331.239300 L 107.119985 331.936976 L 106.536582 332.405757 L 107.128934 332.918812 L 107.017032 334.172290 L 106.596077 334.533566 L 104.746595 334.465249 L 103.530910 332.834629 L 103.737881 331.684476 L 103.162989 329.998828 L 103.602177 328.895066 L 104.970601 327.974751 Z ' fill='#150E16' fill-opacity='1' fill-rule='evenodd' stroke='#FFFFFF' stroke-opacity='1' stroke-width='0.21' stroke-linejoin='round' stroke-linecap='butt' title='Ayrshire and Arran&amp;lt;br/&amp;gt;Winter Year: 2022&amp;lt;br/&amp;gt;Items per Head: 20.86'/>\n <path id='svg_52553b2cf052ba37_e116' d='M 109.163320 327.852971 L 108.919209 328.421691 L 108.769025 328.141669 L 109.163320 327.852971 Z ' fill='#150E16' fill-opacity='1' fill-rule='evenodd' stroke='#FFFFFF' stroke-opacity='1' stroke-width='0.21' stroke-linejoin='round' stroke-linecap='butt' title='Ayrshire and Arran&amp;lt;br/&amp;gt;Winter Year: 2022&amp;lt;br/&amp;gt;Items per Head: 20.86'/>\n <path id='svg_52553b2cf052ba37_e117' d='M 109.661612 326.548288 L 109.651275 327.466572 L 109.063812 327.685172 L 109.320003 326.725481 L 109.661612 326.548288 Z ' fill='#150E16' fill-opacity='1' fill-rule='evenodd' stroke='#FFFFFF' stroke-opacity='1' stroke-width='0.21' stroke-linejoin='round' stroke-linecap='butt' title='Ayrshire and Arran&amp;lt;br/&amp;gt;Winter Year: 2022&amp;lt;br/&amp;gt;Items per Head: 20.86'/>\n <path id='svg_52553b2cf052ba37_e118' d='M 111.098821 324.405672 L 111.678820 325.335216 L 111.248840 325.545939 L 112.019546 326.010865 L 112.029802 326.369557 L 112.475243 326.418265 L 112.752456 327.435195 L 113.118983 327.075867 L 113.327593 327.416101 L 113.915487 326.936286 L 114.414785 327.843722 L 114.912156 327.449797 L 115.353681 327.733326 L 115.207722 328.147205 L 115.590143 328.103030 L 116.067496 328.609650 L 116.282650 328.402761 L 117.023085 329.220739 L 118.022256 329.464420 L 118.512222 330.946419 L 118.896222 331.187455 L 117.990878 332.134062 L 118.214830 332.407336 L 119.225895 331.931029 L 120.077608 332.074691 L 120.637181 331.525065 L 121.660037 332.360270 L 121.656962 332.709117 L 120.750181 333.810419 L 121.242897 334.473250 L 120.831293 334.848248 L 121.014125 335.093015 L 119.850888 335.619732 L 119.605115 336.594949 L 119.875703 337.009218 L 119.441335 338.176454 L 119.057008 338.526123 L 118.329020 337.715897 L 117.042671 337.852114 L 116.235767 339.023453 L 115.355650 341.604231 L 115.109692 341.727773 L 114.922205 340.958421 L 114.606785 341.366949 L 113.482923 341.210059 L 112.157261 342.155395 L 112.164335 342.741216 L 112.577991 343.043511 L 112.492572 343.609749 L 111.413831 343.884971 L 111.078210 343.647996 L 110.438451 343.994075 L 110.277870 343.682861 L 109.195948 343.764278 L 109.083358 343.257825 L 108.717692 343.120417 L 108.007589 344.339848 L 107.116191 344.618729 L 107.006512 343.384422 L 107.892413 341.310796 L 109.670431 339.472607 L 110.042913 338.155048 L 109.923587 337.304683 L 110.896094 336.472302 L 111.334867 335.124071 L 112.619776 334.524327 L 113.017404 333.470404 L 112.233060 332.285998 L 112.604247 332.166042 L 112.338698 331.181405 L 111.358725 330.382109 L 110.550068 330.170644 L 110.328821 329.466986 L 109.544879 328.686291 L 109.588395 327.980416 L 110.269498 327.004661 L 109.883841 325.973745 L 109.910522 324.693896 L 111.098821 324.405672 Z ' fill='#150E16' fill-opacity='1' fill-rule='evenodd' stroke='#FFFFFF' stroke-opacity='1' stroke-width='0.21' stroke-linejoin='round' stroke-linecap='butt' title='Ayrshire and Arran&amp;lt;br/&amp;gt;Winter Year: 2022&amp;lt;br/&amp;gt;Items per Head: 20.86'/>\n <path id='svg_52553b2cf052ba37_e119' d='M 135.764575 342.890456 L 135.179284 341.392071 L 135.731372 339.968274 L 134.980250 339.950207 L 135.464044 339.363687 L 135.293414 338.886455 L 134.467130 338.721055 L 134.019431 339.198184 L 133.407461 339.133439 L 132.666696 337.294593 L 132.341843 337.103251 L 131.722387 337.388623 L 131.176350 336.709386 L 130.198838 337.463931 L 129.851036 337.322197 L 130.074433 336.286811 L 130.833757 335.485034 L 129.933950 335.120599 L 129.413037 335.846186 L 127.879315 336.015074 L 127.051185 335.277284 L 127.272574 334.026885 L 127.747343 333.410505 L 127.744678 332.383957 L 127.231885 331.260178 L 127.858459 331.158846 L 127.822302 330.413919 L 128.995937 329.035691 L 128.454269 328.714326 L 128.084195 327.562327 L 128.669504 326.742707 L 129.403603 326.449232 L 129.700771 327.165570 L 130.355009 327.102016 L 130.603099 327.585030 L 131.761865 327.003042 L 132.476482 329.100046 L 132.931562 328.839693 L 132.788927 328.495152 L 133.159000 327.984083 L 134.768746 326.656490 L 135.076435 327.249122 L 135.813815 326.552821 L 136.199064 326.704665 L 137.016633 326.105923 L 137.491402 326.478971 L 138.403207 326.069109 L 139.226517 326.487276 L 139.532092 326.103563 L 139.870686 326.252352 L 140.160777 325.554554 L 139.686212 325.039793 L 139.890066 324.599066 L 140.527058 324.594658 L 141.008493 325.227239 L 142.344430 323.814251 L 142.790613 324.152968 L 144.131328 324.132643 L 145.233636 324.496730 L 145.300123 325.070534 L 146.010125 325.494812 L 146.570723 326.906980 L 145.890170 327.331198 L 145.895524 328.038900 L 145.482813 328.569330 L 144.723406 329.022793 L 144.842377 329.315305 L 143.792550 330.542117 L 143.972081 330.796277 L 143.050680 330.655693 L 142.657841 330.993425 L 143.012226 331.070207 L 143.263495 332.179877 L 143.888673 332.745581 L 144.387540 334.581352 L 144.851462 334.739738 L 143.995768 335.649184 L 143.615481 335.545020 L 142.639198 336.105187 L 142.609974 337.041232 L 142.069803 337.449780 L 140.815918 337.314937 L 140.226979 338.034105 L 139.721898 338.148747 L 138.567398 339.458230 L 139.025185 339.757018 L 138.760052 340.289579 L 138.297752 340.333611 L 137.809242 341.432822 L 136.204910 342.211793 L 135.764575 342.890456 Z ' fill='#2E2342' fill-opacity='1' fill-rule='evenodd' stroke='#FFFFFF' stroke-opacity='1' stroke-width='0.21' stroke-linejoin='round' stroke-linecap='butt' title='Borders&amp;lt;br/&amp;gt;Winter Year: 2022&amp;lt;br/&amp;gt;Items per Head: 18.93'/>\n <path id='svg_52553b2cf052ba37_e120' d='M 121.391788 334.618021 L 123.314963 334.978476 L 124.206875 336.587874 L 124.754101 336.868654 L 124.730147 337.783308 L 125.585963 338.543454 L 125.919224 338.437691 L 126.074062 337.761569 L 126.517967 337.706710 L 126.467107 336.479075 L 126.867841 336.102029 L 127.424541 335.811219 L 129.413037 335.846186 L 129.933950 335.120599 L 130.833757 335.485034 L 130.074433 336.286811 L 129.827922 337.296253 L 130.198838 337.463931 L 131.176350 336.709386 L 131.722387 337.388623 L 132.341843 337.103251 L 132.666696 337.294593 L 133.407461 339.133439 L 134.019431 339.198184 L 134.467130 338.721055 L 135.293414 338.886455 L 135.464044 339.363687 L 134.980250 339.950207 L 135.731372 339.968274 L 135.179284 341.392071 L 135.776612 342.876941 L 134.437043 344.221145 L 133.228422 344.123667 L 133.551183 344.500920 L 133.299606 345.362991 L 131.923444 346.394517 L 130.019082 346.104330 L 129.052062 346.367853 L 128.423814 347.015580 L 127.814407 347.133400 L 127.930694 346.873492 L 127.569331 346.980818 L 127.722983 346.483167 L 127.374792 347.206388 L 126.625267 347.452961 L 125.507621 348.730288 L 124.727173 348.490442 L 123.961389 348.725161 L 124.125559 348.390464 L 123.864003 348.363741 L 120.904159 350.342126 L 119.988262 350.292809 L 119.536117 349.592966 L 119.390784 350.373198 L 118.942039 349.950403 L 118.606210 350.071651 L 117.397053 348.722052 L 116.392522 348.409030 L 116.579618 348.709704 L 115.577662 347.797752 L 116.143070 349.500092 L 115.773714 350.816034 L 115.977034 351.511659 L 115.355063 352.258567 L 113.437644 351.233091 L 112.694745 349.976748 L 111.286395 348.789672 L 110.489250 348.610929 L 109.857140 348.034532 L 109.227326 348.145183 L 108.090771 349.150936 L 108.636171 351.439080 L 109.129809 351.888399 L 108.929770 352.853647 L 109.240042 352.945217 L 108.319419 352.765072 L 107.770696 352.252587 L 107.700844 351.683171 L 108.026436 351.456266 L 107.906728 350.795382 L 107.483988 350.640257 L 107.393889 349.765138 L 105.553573 347.680606 L 105.116313 346.382424 L 105.423490 344.478425 L 106.415711 344.134441 L 107.005293 345.254032 L 106.646735 345.408854 L 106.656515 346.007044 L 107.193364 346.711378 L 107.676491 346.276340 L 107.116191 344.618729 L 108.007589 344.339848 L 108.580389 343.156614 L 109.003990 343.176712 L 109.195948 343.764278 L 110.277870 343.682861 L 110.438451 343.994075 L 111.078210 343.647996 L 111.413831 343.884971 L 112.492572 343.609749 L 112.230373 342.033165 L 113.482923 341.210059 L 114.606785 341.366949 L 114.916872 340.958421 L 115.109692 341.727773 L 115.355650 341.604231 L 116.235767 339.023453 L 117.034058 337.860317 L 118.329020 337.715897 L 119.132068 338.509307 L 119.875703 337.009218 L 119.605115 336.594949 L 119.850888 335.619732 L 121.391788 334.618021 Z ' fill='#1F1726' fill-opacity='1' fill-rule='evenodd' stroke='#FFFFFF' stroke-opacity='1' stroke-width='0.21' stroke-linejoin='round' stroke-linecap='butt' title='Dumfries and Galloway&amp;lt;br/&amp;gt;Winter Year: 2022&amp;lt;br/&amp;gt;Items per Head: 20.13'/>\n <path id='svg_52553b2cf052ba37_e121' d='M 117.554562 309.904995 L 117.982367 311.279059 L 119.806180 310.533065 L 120.374468 311.051620 L 120.479779 311.580532 L 120.026338 311.596733 L 119.691948 312.020439 L 119.167548 311.711375 L 119.186415 313.336770 L 118.625511 313.371327 L 118.625203 314.631876 L 119.230919 315.222313 L 120.177280 315.799215 L 120.612878 315.591875 L 121.118451 316.082189 L 121.532271 315.961335 L 122.326396 317.055662 L 122.834391 316.930869 L 123.172636 317.388720 L 123.509486 317.134927 L 123.628230 317.831292 L 124.347562 317.356726 L 124.891650 318.014123 L 125.780792 318.045707 L 126.410771 317.672906 L 126.970014 317.922061 L 126.709167 318.425154 L 126.007800 318.712313 L 126.240570 319.367637 L 125.782946 319.544708 L 126.224144 319.841812 L 125.126143 319.951162 L 124.701988 320.702919 L 125.258854 321.439704 L 127.799209 322.273557 L 127.661353 322.534198 L 127.254219 322.712231 L 126.531687 322.443119 L 125.638526 323.595856 L 124.714785 323.854877 L 124.328284 324.422039 L 123.637273 324.688156 L 123.800910 324.476303 L 122.608428 323.688698 L 123.178316 323.217947 L 122.213334 323.121784 L 122.102835 322.658334 L 121.594923 322.636062 L 121.570580 322.064206 L 121.035864 322.004240 L 121.178746 321.590359 L 120.205170 321.574281 L 119.677490 322.042897 L 119.358072 321.483736 L 118.892058 321.929754 L 117.717194 321.506194 L 117.904661 322.920638 L 117.153233 323.058044 L 116.716915 322.536555 L 116.100106 322.722444 L 115.694347 321.959839 L 115.398922 321.990601 L 115.076529 320.943360 L 115.385427 320.642030 L 113.910729 320.272406 L 113.962370 319.456705 L 113.340185 319.171721 L 112.700590 317.368806 L 112.748107 315.672575 L 113.221441 315.537836 L 112.959550 315.146125 L 113.280712 314.608087 L 111.668094 314.503001 L 111.719817 314.045233 L 110.842056 313.398911 L 111.427675 312.347957 L 112.432688 312.008133 L 112.547433 311.433078 L 113.313423 311.452252 L 114.164644 310.628531 L 115.082272 310.495023 L 115.359136 310.084546 L 115.733928 310.333416 L 117.172900 309.605984 L 117.554562 309.904995 Z ' fill='#251B31' fill-opacity='1' fill-rule='evenodd' stroke='#FFFFFF' stroke-opacity='1' stroke-width='0.21' stroke-linejoin='round' stroke-linecap='butt' title='Forth Valley&amp;lt;br/&amp;gt;Winter Year: 2022&amp;lt;br/&amp;gt;Items per Head: 19.65'/>\n <path id='svg_52553b2cf052ba37_e122' d='M 130.570655 283.028149 L 131.387730 283.073267 L 132.621496 283.930827 L 134.413952 284.509246 L 136.626297 283.562640 L 136.899940 283.891634 L 137.316486 283.716842 L 137.931596 284.135399 L 138.265534 283.919075 L 139.976510 284.141181 L 140.742806 284.547596 L 142.748673 284.459575 L 143.367083 283.862820 L 144.648182 284.439476 L 145.553115 283.762987 L 146.951174 283.820697 L 147.163621 284.266037 L 147.722803 284.131994 L 148.490966 285.312335 L 149.222295 285.754310 L 149.395880 287.695001 L 149.893331 288.294012 L 149.570406 288.310397 L 149.525390 288.740787 L 149.812672 289.048556 L 148.754827 290.484044 L 148.736082 290.930983 L 147.314152 292.440915 L 146.482947 294.253244 L 146.089452 295.680751 L 146.449456 295.708684 L 146.772853 296.927130 L 146.507105 297.413097 L 146.089964 297.412257 L 144.448266 300.511179 L 144.543897 301.858233 L 144.090702 302.919358 L 143.077298 304.359746 L 141.621999 305.405394 L 141.200411 305.523271 L 140.352798 304.656811 L 139.275614 304.688804 L 138.608147 303.339515 L 138.735442 302.348980 L 138.422177 301.675894 L 137.455923 300.644833 L 136.714954 300.586897 L 136.611182 300.241536 L 135.875339 300.008559 L 135.100634 300.454822 L 134.201649 300.305418 L 133.487956 300.621864 L 132.993908 302.212701 L 130.967370 301.260393 L 130.950655 301.746238 L 129.872323 302.462184 L 129.130226 302.183272 L 128.675247 302.487308 L 127.785900 302.023715 L 127.492731 302.203246 L 127.237198 301.125550 L 126.086675 301.065974 L 125.641644 301.485780 L 125.273516 301.019009 L 124.735991 301.245730 L 124.542290 301.013061 L 125.214146 299.658480 L 125.126267 298.635520 L 125.447736 298.210997 L 125.244087 297.759504 L 125.678763 297.708746 L 126.447418 296.884616 L 126.905474 296.981209 L 127.946726 295.746706 L 128.990769 295.549724 L 129.293268 294.495797 L 128.878157 294.131977 L 129.079058 293.175628 L 128.539071 292.617532 L 129.914878 290.729222 L 129.596588 289.927035 L 128.886689 289.688728 L 128.507795 289.057889 L 126.557180 289.755338 L 126.060014 289.558600 L 126.227384 287.644161 L 125.846153 287.442359 L 125.991558 286.565871 L 125.390928 285.012297 L 126.995486 284.258224 L 128.262249 284.391322 L 128.688372 283.996822 L 128.682180 283.483642 L 130.570655 283.028149 Z ' fill='#3B548F' fill-opacity='1' fill-rule='evenodd' stroke='#FFFFFF' stroke-opacity='1' stroke-width='0.21' stroke-linejoin='round' stroke-linecap='butt' title='Grampian&amp;lt;br/&amp;gt;Winter Year: 2022&amp;lt;br/&amp;gt;Items per Head: 15.59'/>\n <path id='svg_52553b2cf052ba37_e123' d='M 108.299965 277.232969 L 108.239539 277.009710 L 106.846711 276.450138 L 106.278996 275.292089 L 105.581526 275.144696 L 105.691922 274.706780 L 105.169328 274.118474 L 105.613334 273.463703 L 106.378893 274.388940 L 106.635064 274.094849 L 107.062151 274.493738 L 107.505235 273.654534 L 107.099784 273.237289 L 107.594344 273.229906 L 107.159873 272.847015 L 107.881667 272.643716 L 107.059075 272.428747 L 107.445043 272.175467 L 107.041171 272.279425 L 107.149004 271.958488 L 106.008428 270.547202 L 106.387834 269.882524 L 107.164694 270.816581 L 107.970367 270.305612 L 107.529948 270.100940 L 107.755622 269.862179 L 107.982671 270.315253 L 108.719435 270.286336 L 108.963383 270.737109 L 108.913752 270.134777 L 109.423490 270.361703 L 109.296440 269.978812 L 109.599452 269.917389 L 110.201988 270.485061 L 110.806065 270.319866 L 111.628779 271.281853 L 110.951059 270.420152 L 111.822255 270.330634 L 110.215422 270.235576 L 109.598221 269.642167 L 109.305463 269.728814 L 109.397957 268.758048 L 108.999684 268.785427 L 108.733279 268.030718 L 109.131081 268.000569 L 108.890783 267.783078 L 109.345249 266.648348 L 110.784120 267.533326 L 110.189786 266.920393 L 110.664659 266.770578 L 109.914564 266.806263 L 109.686408 266.605588 L 110.192042 266.622200 L 109.660156 266.296834 L 110.201066 265.785558 L 110.692413 265.889844 L 110.158614 265.666713 L 110.436625 265.531850 L 109.622421 264.896109 L 109.927996 264.010249 L 110.610721 263.643557 L 111.036579 262.953450 L 111.189059 261.855430 L 111.780009 262.232271 L 112.734901 262.161025 L 113.347363 262.626443 L 113.367974 263.404635 L 113.736511 263.811830 L 113.236660 264.307641 L 113.670987 263.946468 L 113.390943 264.580013 L 113.823467 263.769828 L 113.401916 263.320243 L 113.975742 262.995493 L 113.722565 262.539487 L 114.021578 262.447199 L 114.366858 263.303037 L 115.335654 263.739333 L 114.045060 265.970996 L 115.140208 265.292023 L 115.444758 264.437131 L 115.731466 264.378375 L 115.684399 264.702653 L 116.220798 263.114852 L 117.186333 263.216369 L 117.691661 263.905697 L 117.920124 263.715952 L 118.090343 264.441746 L 118.488821 264.075979 L 118.261077 264.857144 L 118.058811 264.948597 L 118.081566 265.123753 L 118.855819 264.199541 L 119.509320 264.049727 L 120.127239 264.472508 L 120.252853 264.219947 L 120.560131 264.351426 L 120.569811 263.922164 L 121.020585 264.172675 L 121.634095 263.539786 L 122.271086 263.913551 L 122.937096 262.846499 L 123.084285 263.723952 L 123.925151 263.513206 L 124.171785 263.842777 L 125.763956 263.738820 L 127.309798 262.463730 L 128.708061 262.507290 L 128.527094 262.834685 L 128.817944 263.080254 L 129.610553 262.762742 L 130.664727 263.175331 L 130.887695 262.709298 L 130.168014 262.134509 L 130.617558 261.421984 L 131.411726 262.091810 L 132.854041 261.733303 L 133.174219 262.240702 L 134.808390 262.160594 L 134.564729 263.231401 L 134.212415 263.330846 L 134.277017 263.960639 L 133.506823 264.956917 L 133.612483 265.873684 L 134.472954 266.064227 L 133.707354 268.361867 L 132.318320 269.849773 L 130.263153 270.722856 L 128.801887 272.820764 L 126.324634 274.827348 L 125.169991 275.382532 L 124.663843 276.562359 L 122.958650 277.298509 L 122.521616 279.369222 L 122.581994 279.781729 L 122.647005 279.532142 L 123.147718 279.755170 L 121.291316 280.014355 L 120.083741 279.408661 L 119.215805 279.686735 L 118.575285 279.197362 L 119.124439 279.724941 L 120.361321 279.640918 L 120.775674 280.292265 L 120.985946 280.072763 L 122.270061 280.372781 L 122.065797 280.526697 L 123.371976 279.893499 L 124.340488 280.568740 L 124.931231 279.843048 L 125.444373 279.704125 L 122.869418 283.568094 L 122.115755 283.551934 L 122.049493 283.025443 L 121.758683 282.937050 L 120.573892 283.699103 L 119.192649 283.811119 L 117.536022 285.706650 L 119.902835 283.928961 L 120.627849 283.894076 L 121.104649 284.257053 L 122.090222 283.781628 L 122.619216 283.955395 L 121.256514 285.513912 L 121.361272 286.279840 L 120.416550 286.412405 L 119.541150 287.901685 L 117.554541 287.860237 L 118.661093 287.966533 L 117.824658 288.183142 L 118.931762 288.253773 L 119.695803 287.929987 L 120.254370 288.116634 L 121.845352 286.672597 L 121.524129 286.083286 L 122.142375 285.625067 L 124.071765 285.981770 L 125.387338 285.042136 L 125.991558 286.565871 L 125.846153 287.442359 L 126.227384 287.644161 L 126.060014 289.558600 L 126.557180 289.755338 L 128.506668 289.057582 L 128.765690 289.590799 L 129.700257 290.077977 L 129.837664 291.058792 L 128.513333 292.787650 L 129.079058 293.175628 L 128.878157 294.131977 L 129.293268 294.495797 L 129.179651 295.155696 L 128.988206 295.551672 L 127.912847 295.772712 L 126.863431 297.010436 L 126.447418 296.884616 L 125.678763 297.708746 L 125.244087 297.759504 L 125.447736 298.210997 L 125.126267 298.635520 L 125.214146 299.658480 L 124.514194 300.947434 L 123.344495 301.215581 L 122.661873 300.639910 L 122.417414 301.725627 L 121.721768 301.945783 L 121.582209 301.650729 L 120.619543 301.775872 L 119.844530 301.363755 L 119.503270 302.295554 L 118.181811 302.687163 L 117.828452 303.302723 L 117.287542 303.093845 L 116.394504 304.397155 L 115.435222 303.644494 L 115.078273 304.382902 L 114.527724 304.647561 L 114.443230 306.168568 L 113.603822 306.557817 L 112.852187 306.486140 L 112.847779 307.268946 L 113.490308 307.352006 L 113.935237 307.021411 L 113.837823 307.744947 L 114.743370 308.933102 L 114.248093 308.823996 L 113.008769 309.359061 L 113.529170 310.107927 L 113.079422 310.746866 L 113.661758 311.101045 L 113.313423 311.452252 L 112.543845 311.435538 L 112.432688 312.008133 L 111.427675 312.347957 L 110.841441 313.402294 L 111.719817 314.045233 L 111.668094 314.503001 L 113.280712 314.608087 L 112.959550 315.146125 L 113.221441 315.537836 L 112.748107 315.672575 L 112.700076 317.360377 L 113.340185 319.171721 L 113.976398 319.519543 L 113.505277 320.923549 L 113.742745 321.519953 L 112.981596 321.890315 L 113.526504 322.262851 L 113.485365 323.402769 L 112.753030 323.353733 L 112.593064 323.034070 L 113.134507 323.043360 L 112.404099 322.676075 L 112.192740 321.954076 L 111.317328 321.588821 L 110.853859 320.077052 L 110.889338 321.082489 L 111.616987 322.163016 L 110.681504 322.243579 L 110.341567 321.540292 L 110.218184 320.512778 L 111.980230 317.256809 L 110.494252 319.572469 L 110.180102 319.346951 L 110.048709 317.972009 L 109.854843 318.066317 L 109.906114 319.267331 L 110.323538 319.874374 L 109.812718 320.692645 L 109.938695 322.200468 L 109.224960 322.039910 L 109.782161 322.590821 L 108.768020 324.955659 L 107.922499 324.693221 L 107.702321 322.838932 L 107.025851 321.566590 L 107.548405 324.059285 L 106.276064 323.204187 L 106.204284 322.567298 L 105.435629 324.052025 L 105.880559 325.566961 L 104.473272 324.957964 L 104.512166 324.434516 L 104.005065 323.893167 L 104.356784 322.561146 L 104.141548 321.328283 L 104.613959 321.318233 L 106.169586 318.724939 L 107.501523 318.140039 L 108.064192 316.998855 L 109.827025 315.713242 L 108.357872 316.412006 L 108.182609 316.137163 L 107.305791 317.814166 L 105.749633 318.708969 L 104.887542 320.135616 L 104.409948 320.083225 L 104.240604 321.066390 L 103.518708 321.593867 L 102.952218 321.036138 L 102.850134 322.157848 L 103.431855 324.488321 L 103.171603 324.640370 L 103.555725 324.683356 L 104.097865 325.509435 L 104.344786 326.716560 L 103.303882 327.243421 L 102.560555 328.172144 L 102.055843 329.627729 L 102.293664 331.186087 L 101.837531 331.274862 L 101.828199 332.213737 L 100.937724 334.345894 L 100.232637 334.505998 L 100.537769 334.791090 L 101.078309 334.478993 L 100.876507 334.700792 L 101.258783 336.046349 L 100.087569 337.212764 L 99.020701 337.137683 L 97.997536 337.515058 L 97.484621 337.116580 L 97.552196 335.762307 L 97.757177 335.052101 L 98.787977 334.022810 L 98.942563 331.045578 L 99.576376 329.741140 L 99.589501 328.599745 L 100.377537 327.981108 L 101.044881 326.731428 L 102.247700 325.941958 L 102.833727 324.807636 L 100.725770 326.909031 L 100.463775 326.838175 L 100.614657 326.077175 L 100.195320 326.246507 L 99.885438 325.951801 L 99.964805 324.848551 L 101.093486 323.035095 L 100.759814 323.021457 L 99.811710 323.952129 L 99.722088 323.214544 L 101.379886 320.923549 L 101.003659 321.055931 L 101.433958 320.489212 L 100.873533 320.855974 L 101.313028 320.224520 L 100.673301 320.833546 L 100.820724 321.025168 L 100.315191 321.766650 L 100.512380 321.091000 L 100.269047 321.424262 L 99.671432 322.915223 L 99.482858 322.799556 L 99.826476 322.214348 L 99.425844 322.498800 L 100.606411 320.182273 L 101.270063 319.314562 L 101.809844 319.294361 L 101.495553 318.831281 L 102.402640 317.227626 L 102.127325 317.177717 L 101.036985 318.444185 L 101.072362 317.801656 L 101.902686 316.478880 L 101.669969 316.015355 L 102.701773 315.623956 L 102.491341 315.319078 L 101.274575 315.694007 L 101.634497 313.828254 L 102.024978 313.473766 L 102.374695 313.694900 L 103.301594 313.258295 L 102.695502 313.226451 L 102.382728 313.586731 L 102.169767 313.246020 L 102.514513 312.439039 L 103.056303 312.075204 L 102.952520 311.526433 L 103.512248 311.116823 L 105.711057 311.169134 L 106.086609 311.669568 L 107.613729 310.551059 L 108.359944 308.882508 L 106.770869 311.145015 L 106.165626 311.452723 L 105.849878 311.045180 L 104.734980 310.817272 L 103.854431 311.058900 L 103.794259 310.246952 L 103.299063 310.685545 L 103.397830 310.389753 L 103.107002 310.535013 L 103.937038 309.303770 L 104.324750 309.896505 L 106.275797 308.776951 L 105.143424 309.091058 L 104.526060 309.616811 L 104.191034 309.155188 L 103.901498 309.245342 L 104.680488 307.790475 L 105.494549 307.067390 L 105.300170 306.667742 L 106.517099 305.974210 L 107.460343 306.243546 L 109.725311 305.488796 L 107.271131 306.057227 L 106.997508 305.707394 L 106.192062 305.629854 L 108.072908 302.650310 L 107.081634 302.165552 L 105.386203 302.001054 L 107.969032 302.703364 L 106.487403 304.337167 L 106.151209 304.935213 L 106.306908 305.209800 L 105.761098 305.654730 L 105.469980 305.445749 L 103.335466 307.470545 L 102.716931 307.396919 L 103.047179 307.650753 L 102.283876 308.818194 L 100.476695 310.011126 L 99.428203 309.141980 L 99.728035 308.502590 L 99.279414 309.146245 L 97.771122 308.625271 L 96.659362 307.011360 L 96.647057 306.307000 L 97.674631 306.305257 L 97.860848 306.200356 L 97.337370 306.146625 L 97.642432 305.910368 L 98.778085 307.028178 L 98.271836 306.217379 L 99.957320 305.297678 L 101.021193 305.935797 L 102.477803 305.755631 L 100.971050 305.852944 L 100.328214 305.136893 L 99.594834 304.977727 L 98.759321 305.910265 L 97.413661 305.508198 L 97.061430 305.816952 L 95.922843 305.252273 L 94.444762 305.315726 L 93.955841 304.744259 L 93.970402 304.352650 L 94.522898 304.181610 L 94.442198 303.797796 L 95.039198 303.630138 L 97.091064 303.600607 L 97.333474 303.251657 L 97.923193 304.012006 L 98.467999 303.960736 L 98.303214 303.298621 L 99.494548 303.197924 L 98.302599 303.177518 L 98.448721 302.706134 L 99.029725 302.976126 L 98.574130 302.743049 L 98.752348 302.224902 L 100.480797 302.080729 L 101.056508 301.492732 L 100.905239 301.285535 L 100.399891 301.948963 L 99.626273 301.663629 L 100.450342 301.128420 L 100.319600 300.886011 L 98.417137 301.275672 L 97.973234 300.882730 L 98.379710 300.541264 L 98.902572 300.714665 L 98.290806 300.206466 L 98.853905 299.759197 L 99.426890 298.163993 L 100.596710 298.091822 L 100.801343 298.725963 L 101.680333 299.253850 L 103.110693 298.771122 L 101.858860 299.006518 L 101.370862 298.674385 L 101.157575 297.691274 L 100.447081 297.865984 L 100.180144 297.393019 L 99.951886 297.479462 L 99.778281 296.973621 L 100.781245 295.815205 L 101.747560 295.644903 L 102.401101 295.880934 L 103.249925 296.791958 L 103.305113 296.403796 L 104.873800 296.244549 L 103.171910 296.323096 L 102.773617 295.577224 L 101.579023 295.307417 L 101.127529 294.735847 L 102.070445 293.732452 L 101.786629 293.120872 L 102.493718 292.673111 L 103.348898 292.450287 L 104.410516 293.766210 L 104.807888 293.567216 L 103.510299 292.396351 L 104.222186 291.541477 L 103.415653 292.414705 L 100.838485 292.060710 L 101.051545 291.316890 L 101.557734 291.106946 L 101.500804 290.751247 L 103.379967 290.583200 L 104.465109 289.385489 L 103.186799 290.461606 L 102.157154 290.216408 L 102.592937 289.744632 L 102.435270 289.383787 L 100.780609 290.504325 L 100.248867 290.574977 L 100.034740 289.935341 L 99.836628 290.175598 L 99.999259 288.580043 L 99.560503 288.338781 L 99.364216 287.611841 L 99.961012 285.196771 L 100.279918 285.087254 L 101.064158 286.093603 L 101.494835 286.205578 L 101.494733 285.835812 L 101.583943 286.385233 L 102.161051 286.915786 L 102.132032 286.114522 L 102.521896 286.695115 L 102.516666 286.439887 L 103.597521 286.530494 L 103.763660 286.225840 L 102.951548 285.909375 L 101.972066 286.107139 L 101.004172 284.278095 L 100.251821 283.874490 L 100.680447 282.562382 L 101.327487 282.345589 L 101.953895 282.802968 L 102.111626 282.549851 L 101.857465 281.907878 L 100.466953 281.348573 L 100.592671 278.869309 L 102.036565 278.637052 L 102.319806 280.329672 L 103.044696 281.139467 L 102.841726 280.566175 L 103.360280 280.558587 L 103.152735 280.303771 L 103.380625 279.540529 L 102.667096 279.063935 L 102.536971 278.270362 L 103.050090 277.498117 L 103.736568 277.685543 L 103.982588 278.838362 L 104.794228 279.215697 L 105.415941 277.967863 L 106.720789 279.140123 L 107.665241 279.499676 L 106.409800 278.080043 L 105.764317 277.912142 L 105.658965 277.474636 L 106.149423 277.314464 L 106.558546 277.909661 L 107.643359 277.885316 L 108.965393 278.925338 L 109.596477 280.045386 L 109.250726 279.007537 L 107.840261 277.722048 L 108.299965 277.232969 Z M 117.719895 265.101836 L 117.643978 265.136161 L 117.726613 265.547355 L 117.729088 265.542329 L 118.015591 265.605085 L 117.712784 265.106424 L 117.719895 265.101836 Z M 110.733343 265.906954 L 111.160387 266.490024 L 111.192359 266.098825 L 110.733343 265.906954 Z ' fill='#3B4E87' fill-opacity='1' fill-rule='evenodd' stroke='#FFFFFF' stroke-opacity='1' stroke-width='0.21' stroke-linejoin='round' stroke-linecap='butt' title='Highland&amp;lt;br/&amp;gt;Winter Year: 2022&amp;lt;br/&amp;gt;Items per Head: 15.95'/>\n <path id='svg_52553b2cf052ba37_e124' d='M 133.728131 260.914729 L 133.851303 261.511709 L 133.476696 261.677335 L 133.728131 260.914729 Z ' fill='#3B4E87' fill-opacity='1' fill-rule='evenodd' stroke='#FFFFFF' stroke-opacity='1' stroke-width='0.21' stroke-linejoin='round' stroke-linecap='butt' title='Highland&amp;lt;br/&amp;gt;Winter Year: 2022&amp;lt;br/&amp;gt;Items per Head: 15.95'/>\n <path id='svg_52553b2cf052ba37_e125' d='M 118.869254 263.593927 L 119.219640 263.644790 L 119.094640 263.937750 L 118.869254 263.593927 Z ' fill='#3B4E87' fill-opacity='1' fill-rule='evenodd' stroke='#FFFFFF' stroke-opacity='1' stroke-width='0.21' stroke-linejoin='round' stroke-linecap='butt' title='Highland&amp;lt;br/&amp;gt;Winter Year: 2022&amp;lt;br/&amp;gt;Items per Head: 15.95'/>\n <path id='svg_52553b2cf052ba37_e126' d='M 108.883605 267.138909 L 108.963178 267.521699 L 108.639657 267.557179 L 108.515787 267.298053 L 108.883605 267.138909 Z ' fill='#3B4E87' fill-opacity='1' fill-rule='evenodd' stroke='#FFFFFF' stroke-opacity='1' stroke-width='0.21' stroke-linejoin='round' stroke-linecap='butt' title='Highland&amp;lt;br/&amp;gt;Winter Year: 2022&amp;lt;br/&amp;gt;Items per Head: 15.95'/>\n <path id='svg_52553b2cf052ba37_e127' d='M 106.209514 323.377894 L 107.511695 324.425053 L 107.369531 324.839323 L 107.704823 324.939138 L 107.736078 325.418173 L 108.162448 325.331646 L 108.400386 327.027611 L 108.064910 327.351294 L 108.320445 327.940667 L 107.992310 328.118022 L 107.542355 327.198302 L 107.142133 326.793980 L 106.853703 326.900683 L 106.754421 325.256566 L 105.778633 324.257705 L 105.685831 323.896345 L 106.209514 323.377894 Z ' fill='#3B4E87' fill-opacity='1' fill-rule='evenodd' stroke='#FFFFFF' stroke-opacity='1' stroke-width='0.21' stroke-linejoin='round' stroke-linecap='butt' title='Highland&amp;lt;br/&amp;gt;Winter Year: 2022&amp;lt;br/&amp;gt;Items per Head: 15.95'/>\n <path id='svg_52553b2cf052ba37_e128' d='M 105.706648 275.361244 L 106.003301 275.736035 L 105.820982 275.912510 L 105.534274 275.774180 L 105.706648 275.361244 Z ' fill='#3B4E87' fill-opacity='1' fill-rule='evenodd' stroke='#FFFFFF' stroke-opacity='1' stroke-width='0.21' stroke-linejoin='round' stroke-linecap='butt' title='Highland&amp;lt;br/&amp;gt;Winter Year: 2022&amp;lt;br/&amp;gt;Items per Head: 15.95'/>\n <path id='svg_52553b2cf052ba37_e129' d='M 104.426718 276.568573 L 104.563509 276.816726 L 104.286748 276.874252 L 104.426718 276.568573 Z ' fill='#3B4E87' fill-opacity='1' fill-rule='evenodd' stroke='#FFFFFF' stroke-opacity='1' stroke-width='0.21' stroke-linejoin='round' stroke-linecap='butt' title='Highland&amp;lt;br/&amp;gt;Winter Year: 2022&amp;lt;br/&amp;gt;Items per Head: 15.95'/>\n <path id='svg_52553b2cf052ba37_e130' d='M 103.812491 308.724430 L 102.726161 310.112437 L 101.523444 310.899858 L 101.900082 310.154275 L 101.615733 310.199905 L 102.411786 309.866255 L 103.259686 308.755089 L 103.812491 308.724430 Z ' fill='#3B4E87' fill-opacity='1' fill-rule='evenodd' stroke='#FFFFFF' stroke-opacity='1' stroke-width='0.21' stroke-linejoin='round' stroke-linecap='butt' title='Highland&amp;lt;br/&amp;gt;Winter Year: 2022&amp;lt;br/&amp;gt;Items per Head: 15.95'/>\n <path id='svg_52553b2cf052ba37_e131' d='M 102.772653 279.233887 L 103.118793 279.865095 L 102.685656 279.564648 L 102.772653 279.233887 Z ' fill='#3B4E87' fill-opacity='1' fill-rule='evenodd' stroke='#FFFFFF' stroke-opacity='1' stroke-width='0.21' stroke-linejoin='round' stroke-linecap='butt' title='Highland&amp;lt;br/&amp;gt;Winter Year: 2022&amp;lt;br/&amp;gt;Items per Head: 15.95'/>\n <path id='svg_52553b2cf052ba37_e132' d='M 102.757025 311.777926 L 102.018210 312.937472 L 101.547849 312.739258 L 101.909515 312.117340 L 102.757025 311.777926 Z ' fill='#3B4E87' fill-opacity='1' fill-rule='evenodd' stroke='#FFFFFF' stroke-opacity='1' stroke-width='0.21' stroke-linejoin='round' stroke-linecap='butt' title='Highland&amp;lt;br/&amp;gt;Winter Year: 2022&amp;lt;br/&amp;gt;Items per Head: 15.95'/>\n <path id='svg_52553b2cf052ba37_e133' d='M 93.824895 281.903837 L 94.508953 281.958103 L 94.421074 282.315112 L 95.033968 282.772265 L 95.161776 283.569551 L 95.683572 283.708065 L 96.292753 284.809592 L 95.969356 288.400184 L 95.266635 288.840376 L 96.179363 289.208728 L 95.889231 289.753186 L 96.436210 290.875323 L 95.685295 291.383460 L 96.153133 291.071118 L 96.902694 291.117958 L 97.076606 291.602982 L 96.627676 292.122972 L 97.307018 291.733108 L 98.491276 292.369074 L 98.777573 292.904898 L 100.592875 292.228591 L 101.118506 292.327237 L 100.870046 292.562776 L 101.888700 292.743352 L 101.549388 293.800767 L 100.325446 294.620795 L 99.883552 294.485172 L 99.843847 295.077743 L 100.101494 295.192775 L 99.768847 295.697691 L 99.145618 295.958518 L 98.180779 297.402842 L 97.190120 297.868198 L 96.755957 297.202085 L 97.284212 296.634556 L 97.345574 295.508399 L 99.305664 294.203675 L 97.480724 294.522108 L 97.057861 293.205406 L 97.079415 294.078839 L 96.319230 295.416111 L 95.955719 295.099051 L 96.062054 293.989033 L 95.402710 293.666334 L 95.284683 294.215035 L 93.394320 294.425863 L 93.922207 293.595682 L 92.941289 293.659771 L 92.711289 292.890294 L 93.118996 292.842921 L 93.230355 292.457157 L 92.487644 292.732379 L 91.604962 291.271155 L 91.636749 290.848169 L 92.311272 290.556520 L 92.324089 290.235379 L 93.494196 291.271465 L 92.665062 290.259783 L 92.690164 289.885033 L 91.812814 290.413392 L 92.044991 289.812598 L 91.723193 289.562293 L 91.767019 288.925506 L 91.663945 288.721182 L 91.196331 289.502306 L 91.203469 288.723007 L 90.643835 289.014040 L 90.688441 290.157857 L 90.435674 290.286957 L 88.830379 289.306962 L 88.583048 288.208225 L 88.320847 287.939461 L 88.028705 288.087943 L 88.185799 287.252739 L 88.921723 287.488112 L 88.610837 286.695422 L 89.073097 286.036487 L 89.910331 287.708660 L 90.366028 287.668793 L 90.565124 288.011468 L 89.910762 286.348316 L 90.517607 286.224344 L 90.844837 286.588737 L 90.972543 286.316201 L 90.047266 285.241273 L 89.878770 285.387313 L 90.217363 283.937861 L 90.838459 284.429756 L 90.987802 285.363073 L 91.709657 285.751625 L 92.179915 286.572680 L 92.633151 286.174200 L 92.435347 287.068142 L 92.985896 285.957940 L 93.956517 287.704067 L 93.806704 287.075279 L 94.056803 287.070090 L 93.375556 286.278794 L 93.044140 285.195231 L 93.544708 284.654035 L 93.117765 284.674831 L 92.810447 283.348552 L 93.745014 282.741810 L 93.824895 281.903837 Z ' fill='#3B4E87' fill-opacity='1' fill-rule='evenodd' stroke='#FFFFFF' stroke-opacity='1' stroke-width='0.21' stroke-linejoin='round' stroke-linecap='butt' title='Highland&amp;lt;br/&amp;gt;Winter Year: 2022&amp;lt;br/&amp;gt;Items per Head: 15.95'/>\n <path id='svg_52553b2cf052ba37_e134' d='M 101.549284 313.897676 L 100.960489 315.345570 L 100.623495 314.583783 L 101.549284 313.897676 Z ' fill='#3B4E87' fill-opacity='1' fill-rule='evenodd' stroke='#FFFFFF' stroke-opacity='1' stroke-width='0.21' stroke-linejoin='round' stroke-linecap='butt' title='Highland&amp;lt;br/&amp;gt;Winter Year: 2022&amp;lt;br/&amp;gt;Items per Head: 15.95'/>\n <path id='svg_52553b2cf052ba37_e135' d='M 101.124453 316.147039 L 101.358659 316.683434 L 101.048162 316.949225 L 101.124453 316.147039 Z ' fill='#3B4E87' fill-opacity='1' fill-rule='evenodd' stroke='#FFFFFF' stroke-opacity='1' stroke-width='0.21' stroke-linejoin='round' stroke-linecap='butt' title='Highland&amp;lt;br/&amp;gt;Winter Year: 2022&amp;lt;br/&amp;gt;Items per Head: 15.95'/>\n <path id='svg_52553b2cf052ba37_e136' d='M 100.791705 315.211239 L 101.035549 315.756209 L 100.712644 317.154821 L 100.383484 316.360735 L 100.791705 315.211239 Z ' fill='#3B4E87' fill-opacity='1' fill-rule='evenodd' stroke='#FFFFFF' stroke-opacity='1' stroke-width='0.21' stroke-linejoin='round' stroke-linecap='butt' title='Highland&amp;lt;br/&amp;gt;Winter Year: 2022&amp;lt;br/&amp;gt;Items per Head: 15.95'/>\n <path id='svg_52553b2cf052ba37_e137' d='M 95.120718 306.062027 L 95.865583 306.505624 L 95.826126 306.943294 L 96.758520 307.916603 L 97.118095 309.264354 L 99.125807 309.531844 L 99.474551 310.140329 L 99.970342 310.185962 L 100.580652 311.040095 L 100.855670 310.964398 L 100.801548 311.741832 L 100.456331 311.393475 L 100.795806 311.897612 L 100.411991 312.612925 L 99.931581 312.417583 L 100.055247 311.887174 L 99.635030 311.956247 L 99.771206 312.289631 L 98.975540 312.932734 L 100.046224 312.572628 L 100.197473 312.891430 L 98.377248 314.162337 L 97.675862 313.871835 L 98.213612 313.390605 L 97.910908 313.120570 L 97.131056 313.855839 L 96.432027 313.797903 L 95.691365 314.418383 L 95.254946 314.178128 L 94.416870 314.542871 L 93.656829 314.336761 L 93.056301 314.420415 L 92.841823 314.900125 L 92.761533 314.678534 L 92.275690 314.813067 L 91.748726 314.191254 L 91.338865 314.267647 L 91.815256 312.943398 L 92.575317 313.051497 L 92.860077 313.238638 L 92.683273 313.522535 L 93.208678 313.673497 L 93.152916 313.110543 L 93.867245 313.393845 L 94.965778 313.216735 L 96.104876 312.748466 L 96.367384 312.263853 L 93.847659 312.798834 L 93.730453 312.173738 L 94.472755 311.591403 L 94.578271 311.020345 L 95.759146 310.767580 L 96.500525 309.890331 L 94.834831 310.265841 L 94.617032 309.609572 L 93.651989 308.892290 L 92.918218 308.983246 L 92.261129 308.635114 L 92.323064 308.248428 L 93.054578 307.718634 L 92.646583 307.749973 L 92.576753 307.049712 L 93.239605 307.156643 L 93.419239 306.902256 L 94.239985 307.625280 L 93.815666 307.140871 L 93.815051 306.481628 L 94.229936 306.755150 L 94.212605 306.304437 L 95.120718 306.062027 Z ' fill='#3B4E87' fill-opacity='1' fill-rule='evenodd' stroke='#FFFFFF' stroke-opacity='1' stroke-width='0.21' stroke-linejoin='round' stroke-linecap='butt' title='Highland&amp;lt;br/&amp;gt;Winter Year: 2022&amp;lt;br/&amp;gt;Items per Head: 15.95'/>\n <path id='svg_52553b2cf052ba37_e138' d='M 100.361130 281.643791 L 100.751610 281.665017 L 100.580981 281.889788 L 100.361130 281.643791 Z ' fill='#3B4E87' fill-opacity='1' fill-rule='evenodd' stroke='#FFFFFF' stroke-opacity='1' stroke-width='0.21' stroke-linejoin='round' stroke-linecap='butt' title='Highland&amp;lt;br/&amp;gt;Winter Year: 2022&amp;lt;br/&amp;gt;Items per Head: 15.95'/>\n <path id='svg_52553b2cf052ba37_e139' d='M 100.052192 316.763931 L 100.243001 317.525306 L 99.315817 317.646511 L 99.343502 317.228240 L 100.052192 316.763931 Z ' fill='#3B4E87' fill-opacity='1' fill-rule='evenodd' stroke='#FFFFFF' stroke-opacity='1' stroke-width='0.21' stroke-linejoin='round' stroke-linecap='butt' title='Highland&amp;lt;br/&amp;gt;Winter Year: 2022&amp;lt;br/&amp;gt;Items per Head: 15.95'/>\n <path id='svg_52553b2cf052ba37_e140' d='M 100.093085 315.943799 L 99.958242 316.736655 L 99.745775 316.503678 L 100.093085 315.943799 Z ' fill='#3B4E87' fill-opacity='1' fill-rule='evenodd' stroke='#FFFFFF' stroke-opacity='1' stroke-width='0.21' stroke-linejoin='round' stroke-linecap='butt' title='Highland&amp;lt;br/&amp;gt;Winter Year: 2022&amp;lt;br/&amp;gt;Items per Head: 15.95'/>\n <path id='svg_52553b2cf052ba37_e141' d='M 99.752339 317.916832 L 99.977725 318.807287 L 97.915154 321.915849 L 97.332346 323.732278 L 97.138234 323.968125 L 97.040204 323.720487 L 96.922075 324.241502 L 96.486272 324.217610 L 96.035476 325.892963 L 95.112311 325.764150 L 94.502287 324.910385 L 94.614366 323.299244 L 95.428550 322.298023 L 96.862396 322.159079 L 97.625411 321.738963 L 96.559856 322.076019 L 95.723973 321.734656 L 96.489143 320.335265 L 99.752339 317.916832 Z ' fill='#3B4E87' fill-opacity='1' fill-rule='evenodd' stroke='#FFFFFF' stroke-opacity='1' stroke-width='0.21' stroke-linejoin='round' stroke-linecap='butt' title='Highland&amp;lt;br/&amp;gt;Winter Year: 2022&amp;lt;br/&amp;gt;Items per Head: 15.95'/>\n <path id='svg_52553b2cf052ba37_e142' d='M 99.448096 290.273729 L 99.827399 290.818022 L 99.533514 290.789003 L 99.448096 290.273729 Z ' fill='#3B4E87' fill-opacity='1' fill-rule='evenodd' stroke='#FFFFFF' stroke-opacity='1' stroke-width='0.21' stroke-linejoin='round' stroke-linecap='butt' title='Highland&amp;lt;br/&amp;gt;Winter Year: 2022&amp;lt;br/&amp;gt;Items per Head: 15.95'/>\n <path id='svg_52553b2cf052ba37_e143' d='M 99.227323 291.917992 L 99.455991 292.211057 L 99.179845 292.364972 L 99.227323 291.917992 Z ' fill='#3B4E87' fill-opacity='1' fill-rule='evenodd' stroke='#FFFFFF' stroke-opacity='1' stroke-width='0.21' stroke-linejoin='round' stroke-linecap='butt' title='Highland&amp;lt;br/&amp;gt;Winter Year: 2022&amp;lt;br/&amp;gt;Items per Head: 15.95'/>\n <path id='svg_52553b2cf052ba37_e144' d='M 99.056487 327.485420 L 99.069122 328.508605 L 98.427905 329.375476 L 98.328644 328.659629 L 99.056487 327.485420 Z ' fill='#3B4E87' fill-opacity='1' fill-rule='evenodd' stroke='#FFFFFF' stroke-opacity='1' stroke-width='0.21' stroke-linejoin='round' stroke-linecap='butt' title='Highland&amp;lt;br/&amp;gt;Winter Year: 2022&amp;lt;br/&amp;gt;Items per Head: 15.95'/>\n <path id='svg_52553b2cf052ba37_e145' d='M 98.352639 285.019680 L 98.527166 285.384012 L 98.141607 286.679939 L 97.873767 285.931278 L 98.158897 285.865426 L 98.065623 285.309053 L 98.352639 285.019680 Z ' fill='#3B4E87' fill-opacity='1' fill-rule='evenodd' stroke='#FFFFFF' stroke-opacity='1' stroke-width='0.21' stroke-linejoin='round' stroke-linecap='butt' title='Highland&amp;lt;br/&amp;gt;Winter Year: 2022&amp;lt;br/&amp;gt;Items per Head: 15.95'/>\n <path id='svg_52553b2cf052ba37_e146' d='M 97.677707 290.895134 L 98.520193 291.369801 L 98.243124 292.110771 L 97.455397 291.746849 L 97.299123 291.292074 L 97.677707 290.895134 Z ' fill='#3B4E87' fill-opacity='1' fill-rule='evenodd' stroke='#FFFFFF' stroke-opacity='1' stroke-width='0.21' stroke-linejoin='round' stroke-linecap='butt' title='Highland&amp;lt;br/&amp;gt;Winter Year: 2022&amp;lt;br/&amp;gt;Items per Head: 15.95'/>\n <path id='svg_52553b2cf052ba37_e147' d='M 98.266298 300.295677 L 98.449439 300.477483 L 97.873153 300.630785 L 98.266298 300.295677 Z ' fill='#3B4E87' fill-opacity='1' fill-rule='evenodd' stroke='#FFFFFF' stroke-opacity='1' stroke-width='0.21' stroke-linejoin='round' stroke-linecap='butt' title='Highland&amp;lt;br/&amp;gt;Winter Year: 2022&amp;lt;br/&amp;gt;Items per Head: 15.95'/>\n <path id='svg_52553b2cf052ba37_e148' d='M 97.821267 286.532380 L 98.034635 287.395887 L 97.365159 288.498110 L 97.761073 290.151909 L 96.988419 290.798334 L 96.548821 290.294094 L 96.693817 288.650079 L 97.052817 287.778369 L 97.569320 287.938641 L 97.416840 287.127226 L 97.557323 286.966031 L 97.577010 287.359690 L 97.921860 287.081186 L 97.821267 286.532380 Z ' fill='#3B4E87' fill-opacity='1' fill-rule='evenodd' stroke='#FFFFFF' stroke-opacity='1' stroke-width='0.21' stroke-linejoin='round' stroke-linecap='butt' title='Highland&amp;lt;br/&amp;gt;Winter Year: 2022&amp;lt;br/&amp;gt;Items per Head: 15.95'/>\n <path id='svg_52553b2cf052ba37_e149' d='M 95.349285 299.449910 L 95.690954 299.950316 L 95.589541 300.757013 L 95.001053 301.135188 L 94.439593 300.779143 L 94.427124 300.364483 L 95.043710 300.122894 L 94.985670 299.646175 L 95.349285 299.449910 Z ' fill='#3B4E87' fill-opacity='1' fill-rule='evenodd' stroke='#FFFFFF' stroke-opacity='1' stroke-width='0.21' stroke-linejoin='round' stroke-linecap='butt' title='Highland&amp;lt;br/&amp;gt;Winter Year: 2022&amp;lt;br/&amp;gt;Items per Head: 15.95'/>\n <path id='svg_52553b2cf052ba37_e150' d='M 95.346906 310.332596 L 95.472951 310.505481 L 95.180809 310.462619 L 95.346906 310.332596 Z ' fill='#3B4E87' fill-opacity='1' fill-rule='evenodd' stroke='#FFFFFF' stroke-opacity='1' stroke-width='0.21' stroke-linejoin='round' stroke-linecap='butt' title='Highland&amp;lt;br/&amp;gt;Winter Year: 2022&amp;lt;br/&amp;gt;Items per Head: 15.95'/>\n <path id='svg_52553b2cf052ba37_e151' d='M 94.133854 322.427533 L 94.272799 325.327525 L 94.949987 326.468100 L 95.186284 328.310391 L 94.645333 328.902142 L 94.457887 328.751917 L 94.419638 329.227814 L 93.426314 329.554801 L 92.583316 329.394344 L 92.198475 330.251492 L 91.829426 330.527741 L 91.253755 330.421712 L 90.929005 330.188120 L 91.043031 329.543336 L 92.008157 328.523453 L 91.113888 327.030852 L 92.159406 326.091772 L 91.058946 325.837057 L 90.120255 327.505621 L 89.122869 328.243555 L 88.664055 327.701373 L 89.571656 326.430878 L 89.650819 325.746204 L 89.314481 325.465854 L 89.695527 325.113725 L 89.804938 324.126962 L 90.612766 324.048312 L 91.510090 323.342414 L 91.415484 324.588505 L 91.599835 323.539499 L 92.025384 323.673829 L 93.205130 322.612314 L 94.133854 322.427533 Z ' fill='#3B4E87' fill-opacity='1' fill-rule='evenodd' stroke='#FFFFFF' stroke-opacity='1' stroke-width='0.21' stroke-linejoin='round' stroke-linecap='butt' title='Highland&amp;lt;br/&amp;gt;Winter Year: 2022&amp;lt;br/&amp;gt;Items per Head: 15.95'/>\n <path id='svg_52553b2cf052ba37_e152' d='M 94.838421 294.372950 L 95.130460 294.708160 L 94.389081 295.156167 L 94.197737 294.716158 L 94.838421 294.372950 Z ' fill='#3B4E87' fill-opacity='1' fill-rule='evenodd' stroke='#FFFFFF' stroke-opacity='1' stroke-width='0.21' stroke-linejoin='round' stroke-linecap='butt' title='Highland&amp;lt;br/&amp;gt;Winter Year: 2022&amp;lt;br/&amp;gt;Items per Head: 15.95'/>\n <path id='svg_52553b2cf052ba37_e153' d='M 92.630075 309.524707 L 93.711381 309.539227 L 94.694348 310.266046 L 93.884903 310.482574 L 93.670364 310.215288 L 93.429698 310.544448 L 93.075209 310.036660 L 93.240200 309.779074 L 92.968053 310.153455 L 92.611207 309.952165 L 92.630075 309.524707 Z ' fill='#3B4E87' fill-opacity='1' fill-rule='evenodd' stroke='#FFFFFF' stroke-opacity='1' stroke-width='0.21' stroke-linejoin='round' stroke-linecap='butt' title='Highland&amp;lt;br/&amp;gt;Winter Year: 2022&amp;lt;br/&amp;gt;Items per Head: 15.95'/>\n <path id='svg_52553b2cf052ba37_e154' d='M 94.133546 317.965825 L 94.316665 318.260223 L 93.432713 319.592655 L 93.571411 319.983341 L 92.585776 320.947852 L 92.301735 320.423246 L 92.948159 320.304811 L 92.293737 320.073066 L 92.767482 319.072153 L 94.133546 317.965825 Z ' fill='#3B4E87' fill-opacity='1' fill-rule='evenodd' stroke='#FFFFFF' stroke-opacity='1' stroke-width='0.21' stroke-linejoin='round' stroke-linecap='butt' title='Highland&amp;lt;br/&amp;gt;Winter Year: 2022&amp;lt;br/&amp;gt;Items per Head: 15.95'/>\n <path id='svg_52553b2cf052ba37_e155' d='M 93.648215 301.563097 L 94.189534 301.674149 L 94.226757 302.083909 L 93.567206 302.062785 L 93.648215 301.563097 Z ' fill='#3B4E87' fill-opacity='1' fill-rule='evenodd' stroke='#FFFFFF' stroke-opacity='1' stroke-width='0.21' stroke-linejoin='round' stroke-linecap='butt' title='Highland&amp;lt;br/&amp;gt;Winter Year: 2022&amp;lt;br/&amp;gt;Items per Head: 15.95'/>\n <path id='svg_52553b2cf052ba37_e156' d='M 93.163929 296.677767 L 94.000241 297.281658 L 94.135085 297.673164 L 93.790317 297.857227 L 94.224706 298.034728 L 93.887138 299.014208 L 93.213231 299.574395 L 91.464376 297.796316 L 93.163929 296.677767 Z ' fill='#3B4E87' fill-opacity='1' fill-rule='evenodd' stroke='#FFFFFF' stroke-opacity='1' stroke-width='0.21' stroke-linejoin='round' stroke-linecap='butt' title='Highland&amp;lt;br/&amp;gt;Winter Year: 2022&amp;lt;br/&amp;gt;Items per Head: 15.95'/>\n <path id='svg_52553b2cf052ba37_e157' d='M 91.572682 290.065282 L 91.550595 290.406194 L 91.293336 290.367760 L 91.572682 290.065282 Z ' fill='#3B4E87' fill-opacity='1' fill-rule='evenodd' stroke='#FFFFFF' stroke-opacity='1' stroke-width='0.21' stroke-linejoin='round' stroke-linecap='butt' title='Highland&amp;lt;br/&amp;gt;Winter Year: 2022&amp;lt;br/&amp;gt;Items per Head: 15.95'/>\n <path id='svg_52553b2cf052ba37_e158' d='M 90.362049 296.281156 L 91.202997 296.388210 L 91.058515 296.658817 L 91.452994 296.950652 L 90.497917 296.579962 L 89.671122 296.792635 L 90.362049 296.281156 Z ' fill='#3B4E87' fill-opacity='1' fill-rule='evenodd' stroke='#FFFFFF' stroke-opacity='1' stroke-width='0.21' stroke-linejoin='round' stroke-linecap='butt' title='Highland&amp;lt;br/&amp;gt;Winter Year: 2022&amp;lt;br/&amp;gt;Items per Head: 15.95'/>\n <path id='svg_52553b2cf052ba37_e159' d='M 91.430743 312.813293 L 91.203715 313.559388 L 90.673942 313.724296 L 90.766373 313.171164 L 91.430743 312.813293 Z ' fill='#3B4E87' fill-opacity='1' fill-rule='evenodd' stroke='#FFFFFF' stroke-opacity='1' stroke-width='0.21' stroke-linejoin='round' stroke-linecap='butt' title='Highland&amp;lt;br/&amp;gt;Winter Year: 2022&amp;lt;br/&amp;gt;Items per Head: 15.95'/>\n <path id='svg_52553b2cf052ba37_e160' d='M 90.846356 304.979798 L 91.063130 305.390171 L 90.398656 306.571046 L 90.101408 306.480644 L 90.092978 306.921740 L 88.925845 307.534325 L 88.745577 307.218700 L 88.559771 307.576265 L 88.084487 307.348518 L 87.817058 307.803191 L 87.774093 307.156766 L 88.365760 307.051558 L 89.006340 306.062334 L 90.846356 304.979798 Z ' fill='#3B4E87' fill-opacity='1' fill-rule='evenodd' stroke='#FFFFFF' stroke-opacity='1' stroke-width='0.21' stroke-linejoin='round' stroke-linecap='butt' title='Highland&amp;lt;br/&amp;gt;Winter Year: 2022&amp;lt;br/&amp;gt;Items per Head: 15.95'/>\n <path id='svg_52553b2cf052ba37_e161' d='M 87.072193 307.818162 L 87.407506 308.541084 L 86.974738 308.558392 L 86.917970 308.859578 L 86.777692 308.526564 L 86.422718 308.586495 L 86.263116 309.358918 L 85.441077 309.314927 L 85.146187 310.266928 L 84.071198 310.015229 L 84.189735 309.196839 L 83.803767 308.840199 L 84.280794 308.464177 L 85.027299 308.242070 L 85.504828 308.570683 L 86.256368 308.069902 L 86.733933 308.244833 L 87.072193 307.818162 Z ' fill='#3B4E87' fill-opacity='1' fill-rule='evenodd' stroke='#FFFFFF' stroke-opacity='1' stroke-width='0.21' stroke-linejoin='round' stroke-linecap='butt' title='Highland&amp;lt;br/&amp;gt;Winter Year: 2022&amp;lt;br/&amp;gt;Items per Head: 15.95'/>\n <path id='svg_52553b2cf052ba37_e162' d='M 136.645677 320.994713 L 138.977893 321.254616 L 139.922552 322.469658 L 141.334782 322.808210 L 142.344430 323.814251 L 141.008493 325.227239 L 140.527058 324.594658 L 139.890066 324.599066 L 139.686212 325.039793 L 140.136188 325.755865 L 139.363922 326.485944 L 138.403207 326.069109 L 137.491402 326.478971 L 137.016633 326.105923 L 136.199064 326.704665 L 135.813815 326.552821 L 135.076435 327.249122 L 134.768746 326.656490 L 133.159000 327.984083 L 132.788927 328.495152 L 132.931562 328.839693 L 132.476482 329.100046 L 131.761865 327.003042 L 130.603099 327.585030 L 130.355009 327.102016 L 129.700771 327.165570 L 129.407295 326.448924 L 128.669504 326.742707 L 128.063358 327.634660 L 126.998418 327.275250 L 126.541757 326.704870 L 124.708510 327.399490 L 124.606173 326.905135 L 124.955904 326.579359 L 124.529821 325.542310 L 125.034779 325.028082 L 123.957492 325.196149 L 123.511045 324.725993 L 124.145965 324.558973 L 124.805516 323.806110 L 125.638526 323.595856 L 126.531687 322.443119 L 127.339022 322.715307 L 127.799209 322.273557 L 129.183691 322.614037 L 130.340058 322.436597 L 130.824160 322.899247 L 131.872324 322.668487 L 133.002378 323.642944 L 134.038237 323.595631 L 135.379179 322.954436 L 135.509471 322.189841 L 136.645677 320.994713 Z ' fill='#3C4275' fill-opacity='1' fill-rule='evenodd' stroke='#FFFFFF' stroke-opacity='1' stroke-width='0.21' stroke-linejoin='round' stroke-linecap='butt' title='Lothian&amp;lt;br/&amp;gt;Winter Year: 2022&amp;lt;br/&amp;gt;Items per Head: 16.72'/>\n <path id='svg_52553b2cf052ba37_e163' d='M 142.499720 245.099791 L 142.692356 245.401162 L 142.286556 245.412381 L 142.403865 245.982309 L 142.068736 246.173202 L 141.725406 245.930751 L 141.930859 245.275611 L 142.499720 245.099791 Z ' fill='#3C4275' fill-opacity='1' fill-rule='evenodd' stroke='#FFFFFF' stroke-opacity='1' stroke-width='0.21' stroke-linejoin='round' stroke-linecap='butt' title='Orkney&amp;lt;br/&amp;gt;Winter Year: 2022&amp;lt;br/&amp;gt;Items per Head: 16.72'/>\n <path id='svg_52553b2cf052ba37_e164' d='M 140.409011 246.751806 L 140.475294 247.082094 L 140.890343 247.145855 L 140.269411 248.050542 L 140.765652 247.983193 L 141.303158 247.400363 L 141.708322 247.474708 L 142.040189 246.931501 L 142.183501 247.592609 L 142.655379 247.779789 L 141.432750 247.756841 L 140.955643 248.581586 L 141.069526 249.017924 L 140.798486 248.565324 L 140.301383 249.078197 L 140.250317 248.599696 L 139.937933 248.883737 L 139.539803 248.720223 L 138.859129 249.863260 L 138.834499 249.012857 L 140.054544 247.939816 L 139.721199 247.038411 L 139.886990 247.462996 L 140.188177 247.386827 L 140.409011 246.751806 Z ' fill='#3C4275' fill-opacity='1' fill-rule='evenodd' stroke='#FFFFFF' stroke-opacity='1' stroke-width='0.21' stroke-linejoin='round' stroke-linecap='butt' title='Orkney&amp;lt;br/&amp;gt;Winter Year: 2022&amp;lt;br/&amp;gt;Items per Head: 16.72'/>\n <path id='svg_52553b2cf052ba37_e165' d='M 139.622288 250.360588 L 139.664042 250.800864 L 140.309381 250.845776 L 139.896628 250.957323 L 140.004503 251.425816 L 140.698816 251.300244 L 140.683804 252.358149 L 140.324229 252.175010 L 139.868266 252.443628 L 139.874993 251.859959 L 139.568535 251.630081 L 139.293189 251.780961 L 139.371655 252.368691 L 138.895430 252.294142 L 139.119955 251.586539 L 139.684327 251.357442 L 139.065198 250.571600 L 139.622288 250.360588 Z ' fill='#3C4275' fill-opacity='1' fill-rule='evenodd' stroke='#FFFFFF' stroke-opacity='1' stroke-width='0.21' stroke-linejoin='round' stroke-linecap='butt' title='Orkney&amp;lt;br/&amp;gt;Winter Year: 2022&amp;lt;br/&amp;gt;Items per Head: 16.72'/>\n <path id='svg_52553b2cf052ba37_e166' d='M 140.105959 250.484788 L 140.248369 250.675023 L 139.951469 250.759682 L 140.105959 250.484788 Z ' fill='#3C4275' fill-opacity='1' fill-rule='evenodd' stroke='#FFFFFF' stroke-opacity='1' stroke-width='0.21' stroke-linejoin='round' stroke-linecap='butt' title='Orkney&amp;lt;br/&amp;gt;Winter Year: 2022&amp;lt;br/&amp;gt;Items per Head: 16.72'/>\n <path id='svg_52553b2cf052ba37_e167' d='M 138.659151 256.234505 L 139.156706 256.316375 L 138.928694 256.557614 L 138.659151 256.234505 Z ' fill='#3C4275' fill-opacity='1' fill-rule='evenodd' stroke='#FFFFFF' stroke-opacity='1' stroke-width='0.21' stroke-linejoin='round' stroke-linecap='butt' title='Orkney&amp;lt;br/&amp;gt;Winter Year: 2022&amp;lt;br/&amp;gt;Items per Head: 16.72'/>\n <path id='svg_52553b2cf052ba37_e168' d='M 132.668624 250.468585 L 134.401256 251.187119 L 134.721987 251.611663 L 134.531526 251.773127 L 135.210744 252.383703 L 135.111175 253.163064 L 134.561386 252.916818 L 134.511899 253.493393 L 133.767546 253.767159 L 133.985900 253.934630 L 135.133673 253.780285 L 135.682458 254.380728 L 136.044165 253.671383 L 136.421745 253.829915 L 136.234975 254.215513 L 136.536530 254.225809 L 136.166108 254.819630 L 136.547851 254.943029 L 136.887759 254.371746 L 137.266979 254.482800 L 137.534286 254.197220 L 137.669293 254.881892 L 137.049611 255.086670 L 137.214252 255.734120 L 137.592632 255.884118 L 137.781617 255.739329 L 137.421161 255.313453 L 138.650373 254.691166 L 138.585793 255.911538 L 137.725608 256.008175 L 137.147538 256.981174 L 136.882897 256.532021 L 136.396520 256.432432 L 136.363675 256.528644 L 135.927883 256.443239 L 135.557172 254.960563 L 132.924550 256.078722 L 132.350805 255.264868 L 132.255338 254.371500 L 131.688097 255.132403 L 130.968969 254.741780 L 130.903282 253.601533 L 131.283528 252.703858 L 131.047599 251.585022 L 131.513508 250.999181 L 131.251125 250.836692 L 132.668624 250.468585 Z ' fill='#3C4275' fill-opacity='1' fill-rule='evenodd' stroke='#FFFFFF' stroke-opacity='1' stroke-width='0.21' stroke-linejoin='round' stroke-linecap='butt' title='Orkney&amp;lt;br/&amp;gt;Winter Year: 2022&amp;lt;br/&amp;gt;Items per Head: 16.72'/>\n <path id='svg_52553b2cf052ba37_e169' d='M 136.340353 256.596961 L 136.195845 257.020265 L 136.529004 256.914769 L 136.496765 257.352193 L 136.870797 257.396818 L 136.280626 257.692100 L 136.603880 258.175933 L 135.975748 258.736899 L 136.059157 260.136538 L 135.399361 260.029279 L 135.376800 258.912965 L 134.878405 258.437417 L 135.339065 258.336003 L 135.097046 258.002392 L 134.718460 258.144638 L 134.973831 257.831146 L 135.667815 257.987482 L 136.313441 257.626082 L 135.281991 257.384925 L 136.184996 257.321164 L 136.067955 256.833884 L 136.340353 256.596961 Z ' fill='#3C4275' fill-opacity='1' fill-rule='evenodd' stroke='#FFFFFF' stroke-opacity='1' stroke-width='0.21' stroke-linejoin='round' stroke-linecap='butt' title='Orkney&amp;lt;br/&amp;gt;Winter Year: 2022&amp;lt;br/&amp;gt;Items per Head: 16.72'/>\n <path id='svg_52553b2cf052ba37_e170' d='M 138.348326 248.423610 L 138.539526 248.842988 L 138.258006 248.732487 L 138.348326 248.423610 Z ' fill='#3C4275' fill-opacity='1' fill-rule='evenodd' stroke='#FFFFFF' stroke-opacity='1' stroke-width='0.21' stroke-linejoin='round' stroke-linecap='butt' title='Orkney&amp;lt;br/&amp;gt;Winter Year: 2022&amp;lt;br/&amp;gt;Items per Head: 16.72'/>\n <path id='svg_52553b2cf052ba37_e171' d='M 138.116724 248.326482 L 138.076426 248.767147 L 138.414855 248.973872 L 138.062849 249.697552 L 138.341579 250.676274 L 137.726428 250.962920 L 137.295075 249.700730 L 137.861067 249.696999 L 137.730449 248.686549 L 138.116724 248.326482 Z ' fill='#3C4275' fill-opacity='1' fill-rule='evenodd' stroke='#FFFFFF' stroke-opacity='1' stroke-width='0.21' stroke-linejoin='round' stroke-linecap='butt' title='Orkney&amp;lt;br/&amp;gt;Winter Year: 2022&amp;lt;br/&amp;gt;Items per Head: 16.72'/>\n <path id='svg_52553b2cf052ba37_e172' d='M 137.554322 252.049620 L 137.311810 252.978816 L 137.514783 253.412260 L 137.262160 253.638223 L 136.002103 253.343968 L 136.382985 252.260366 L 136.923402 252.748076 L 137.554322 252.049620 Z ' fill='#3C4275' fill-opacity='1' fill-rule='evenodd' stroke='#FFFFFF' stroke-opacity='1' stroke-width='0.21' stroke-linejoin='round' stroke-linecap='butt' title='Orkney&amp;lt;br/&amp;gt;Winter Year: 2022&amp;lt;br/&amp;gt;Items per Head: 16.72'/>\n <path id='svg_52553b2cf052ba37_e173' d='M 135.846629 245.795929 L 136.137971 246.074187 L 135.461069 246.776149 L 136.447156 247.077705 L 136.710360 247.959217 L 136.991140 247.918139 L 137.205863 248.373713 L 136.955661 248.317704 L 136.659951 248.847744 L 136.749633 248.209502 L 136.303760 247.709732 L 135.968961 247.543963 L 135.492653 248.151607 L 134.501850 246.486366 L 135.248337 246.543072 L 135.846629 245.795929 Z ' fill='#3C4275' fill-opacity='1' fill-rule='evenodd' stroke='#FFFFFF' stroke-opacity='1' stroke-width='0.21' stroke-linejoin='round' stroke-linecap='butt' title='Orkney&amp;lt;br/&amp;gt;Winter Year: 2022&amp;lt;br/&amp;gt;Items per Head: 16.72'/>\n <path id='svg_52553b2cf052ba37_e174' d='M 136.756690 245.221611 L 136.774182 246.407286 L 136.423940 246.682262 L 136.756690 245.221611 Z ' fill='#3C4275' fill-opacity='1' fill-rule='evenodd' stroke='#FFFFFF' stroke-opacity='1' stroke-width='0.21' stroke-linejoin='round' stroke-linecap='butt' title='Orkney&amp;lt;br/&amp;gt;Winter Year: 2022&amp;lt;br/&amp;gt;Items per Head: 16.72'/>\n <path id='svg_52553b2cf052ba37_e175' d='M 136.170148 250.141006 L 136.198204 251.242285 L 135.904298 250.485301 L 136.170148 250.141006 Z ' fill='#3C4275' fill-opacity='1' fill-rule='evenodd' stroke='#FFFFFF' stroke-opacity='1' stroke-width='0.21' stroke-linejoin='round' stroke-linecap='butt' title='Orkney&amp;lt;br/&amp;gt;Winter Year: 2022&amp;lt;br/&amp;gt;Items per Head: 16.72'/>\n <path id='svg_52553b2cf052ba37_e176' d='M 135.677947 251.945869 L 135.876837 252.241046 L 135.539823 252.391824 L 135.321593 252.049805 L 135.677947 251.945869 Z ' fill='#3C4275' fill-opacity='1' fill-rule='evenodd' stroke='#FFFFFF' stroke-opacity='1' stroke-width='0.21' stroke-linejoin='round' stroke-linecap='butt' title='Orkney&amp;lt;br/&amp;gt;Winter Year: 2022&amp;lt;br/&amp;gt;Items per Head: 16.72'/>\n <path id='svg_52553b2cf052ba37_e177' d='M 134.431856 249.435843 L 134.923012 249.961803 L 135.834652 249.920499 L 135.529731 250.330790 L 135.688713 250.941550 L 134.788865 251.149733 L 134.143794 250.689297 L 133.856286 250.033665 L 134.431856 249.435843 Z ' fill='#3C4275' fill-opacity='1' fill-rule='evenodd' stroke='#FFFFFF' stroke-opacity='1' stroke-width='0.21' stroke-linejoin='round' stroke-linecap='butt' title='Orkney&amp;lt;br/&amp;gt;Winter Year: 2022&amp;lt;br/&amp;gt;Items per Head: 16.72'/>\n <path id='svg_52553b2cf052ba37_e178' d='M 135.697737 251.116180 L 135.655408 251.509224 L 135.082485 251.432399 L 135.697737 251.116180 Z ' fill='#3C4275' fill-opacity='1' fill-rule='evenodd' stroke='#FFFFFF' stroke-opacity='1' stroke-width='0.21' stroke-linejoin='round' stroke-linecap='butt' title='Orkney&amp;lt;br/&amp;gt;Winter Year: 2022&amp;lt;br/&amp;gt;Items per Head: 16.72'/>\n <path id='svg_52553b2cf052ba37_e179' d='M 134.333621 257.410334 L 133.844824 257.809264 L 134.250828 257.834511 L 134.203925 258.255567 L 133.500158 258.192936 L 133.464269 257.791689 L 134.333621 257.410334 Z ' fill='#3C4275' fill-opacity='1' fill-rule='evenodd' stroke='#FFFFFF' stroke-opacity='1' stroke-width='0.21' stroke-linejoin='round' stroke-linecap='butt' title='Orkney&amp;lt;br/&amp;gt;Winter Year: 2022&amp;lt;br/&amp;gt;Items per Head: 16.72'/>\n <path id='svg_52553b2cf052ba37_e180' d='M 130.975860 255.474689 L 132.662288 256.759911 L 132.623239 257.626020 L 133.196470 258.084960 L 132.108396 258.838951 L 133.341648 258.403700 L 133.334164 258.855746 L 133.580839 258.876522 L 132.391781 258.901933 L 132.389669 259.202461 L 131.594414 259.039113 L 130.662512 256.993501 L 130.018999 256.857345 L 130.424204 255.709162 L 130.975860 255.474689 Z ' fill='#3C4275' fill-opacity='1' fill-rule='evenodd' stroke='#FFFFFF' stroke-opacity='1' stroke-width='0.21' stroke-linejoin='round' stroke-linecap='butt' title='Orkney&amp;lt;br/&amp;gt;Winter Year: 2022&amp;lt;br/&amp;gt;Items per Head: 16.72'/>\n <path id='svg_52553b2cf052ba37_e181' d='M 131.526552 255.307894 L 132.063648 255.737833 L 131.555223 255.679733 L 131.526552 255.307894 Z ' fill='#3C4275' fill-opacity='1' fill-rule='evenodd' stroke='#FFFFFF' stroke-opacity='1' stroke-width='0.21' stroke-linejoin='round' stroke-linecap='butt' title='Orkney&amp;lt;br/&amp;gt;Winter Year: 2022&amp;lt;br/&amp;gt;Items per Head: 16.72'/>\n <path id='svg_52553b2cf052ba37_e182' d='M 161.003783 221.297382 L 161.077879 221.577773 L 160.565416 221.787840 L 161.003783 221.297382 Z ' fill='#395E9C' fill-opacity='1' fill-rule='evenodd' stroke='#FFFFFF' stroke-opacity='1' stroke-width='0.21' stroke-linejoin='round' stroke-linecap='butt' title='Shetland&amp;lt;br/&amp;gt;Winter Year: 2022&amp;lt;br/&amp;gt;Items per Head: 15'/>\n <path id='svg_52553b2cf052ba37_e183' d='M 159.526254 211.849567 L 159.557981 212.778885 L 159.996040 211.868825 L 160.836228 212.441543 L 160.343330 212.655138 L 160.615251 213.331710 L 160.001619 213.194693 L 160.593512 214.092161 L 159.659354 215.122914 L 160.074116 215.542661 L 159.809373 215.771904 L 159.165409 215.414852 L 158.775442 215.889519 L 158.402701 215.561896 L 158.360660 214.748636 L 158.722551 214.785326 L 158.574972 214.198293 L 158.920128 213.317046 L 158.663056 213.104681 L 159.526254 211.849567 Z ' fill='#395E9C' fill-opacity='1' fill-rule='evenodd' stroke='#FFFFFF' stroke-opacity='1' stroke-width='0.21' stroke-linejoin='round' stroke-linecap='butt' title='Shetland&amp;lt;br/&amp;gt;Winter Year: 2022&amp;lt;br/&amp;gt;Items per Head: 15'/>\n <path id='svg_52553b2cf052ba37_e184' d='M 159.713803 216.696423 L 160.109821 216.809218 L 160.384777 217.473383 L 160.763322 217.104827 L 160.478563 218.172311 L 160.126658 217.724303 L 159.470616 217.638517 L 159.815936 218.166670 L 159.431300 218.317817 L 158.808973 217.250682 L 158.931613 216.766767 L 159.375518 216.995331 L 159.713803 216.696423 Z ' fill='#395E9C' fill-opacity='1' fill-rule='evenodd' stroke='#FFFFFF' stroke-opacity='1' stroke-width='0.21' stroke-linejoin='round' stroke-linecap='butt' title='Shetland&amp;lt;br/&amp;gt;Winter Year: 2022&amp;lt;br/&amp;gt;Items per Head: 15'/>\n <path id='svg_52553b2cf052ba37_e185' d='M 159.190614 215.652688 L 159.590959 215.831070 L 159.492518 216.098089 L 159.190614 215.652688 Z ' fill='#395E9C' fill-opacity='1' fill-rule='evenodd' stroke='#FFFFFF' stroke-opacity='1' stroke-width='0.21' stroke-linejoin='round' stroke-linecap='butt' title='Shetland&amp;lt;br/&amp;gt;Winter Year: 2022&amp;lt;br/&amp;gt;Items per Head: 15'/>\n <path id='svg_52553b2cf052ba37_e186' d='M 159.293996 222.303114 L 158.564349 223.616269 L 157.893559 223.553799 L 158.277826 222.757110 L 159.293996 222.303114 Z ' fill='#395E9C' fill-opacity='1' fill-rule='evenodd' stroke='#FFFFFF' stroke-opacity='1' stroke-width='0.21' stroke-linejoin='round' stroke-linecap='butt' title='Shetland&amp;lt;br/&amp;gt;Winter Year: 2022&amp;lt;br/&amp;gt;Items per Head: 15'/>\n <path id='svg_52553b2cf052ba37_e187' d='M 158.336254 217.029786 L 158.582354 217.216617 L 158.195464 217.560338 L 158.336254 217.029786 Z ' fill='#395E9C' fill-opacity='1' fill-rule='evenodd' stroke='#FFFFFF' stroke-opacity='1' stroke-width='0.21' stroke-linejoin='round' stroke-linecap='butt' title='Shetland&amp;lt;br/&amp;gt;Winter Year: 2022&amp;lt;br/&amp;gt;Items per Head: 15'/>\n <path id='svg_52553b2cf052ba37_e188' d='M 157.673421 214.421936 L 158.190275 214.720027 L 158.428951 216.588959 L 157.861238 216.524050 L 157.456034 215.968291 L 158.012118 217.101360 L 157.713003 217.483228 L 157.274348 217.358516 L 158.206026 217.943642 L 158.089845 218.667383 L 157.704492 218.636394 L 158.016856 219.024476 L 157.956130 219.824877 L 157.500331 220.021554 L 156.959872 219.647173 L 157.128206 220.300571 L 156.222288 220.659755 L 156.045363 221.026301 L 156.406926 221.121214 L 156.099709 221.359831 L 156.404875 221.620799 L 156.082379 221.372032 L 155.387759 222.020816 L 156.378418 221.750515 L 156.452762 222.593944 L 156.942195 221.400026 L 157.041969 221.717805 L 157.735152 220.908953 L 156.710757 222.469129 L 156.847241 222.764657 L 157.078780 222.206007 L 157.461673 222.334595 L 157.460750 223.059465 L 156.979930 223.321458 L 156.192365 223.198962 L 156.421999 223.855027 L 156.556739 223.491474 L 156.786865 223.857569 L 157.363847 223.755827 L 157.407120 224.238533 L 156.532046 224.799091 L 156.659444 225.156881 L 157.122464 224.899480 L 157.191986 225.292214 L 156.717423 225.286965 L 156.340888 225.766473 L 156.474377 225.276566 L 156.146981 225.387703 L 156.066095 225.085840 L 156.155082 225.623119 L 155.740606 225.966122 L 156.256700 225.905211 L 155.880187 226.637402 L 156.467938 226.107424 L 155.891733 227.283478 L 156.616726 226.544458 L 156.522060 227.426094 L 156.886350 227.813129 L 156.564061 227.819815 L 156.620213 228.276496 L 156.427577 227.994199 L 156.402311 228.507831 L 156.074607 228.265359 L 156.130164 228.786376 L 155.842574 228.933976 L 156.095977 230.127708 L 156.468450 230.447209 L 156.040809 230.191715 L 155.765831 230.459310 L 156.102785 231.850702 L 155.914314 231.339139 L 155.764047 231.656734 L 155.539850 231.305733 L 155.271682 231.443733 L 155.549468 232.263125 L 155.351193 233.048639 L 155.119530 233.009838 L 155.382284 233.329092 L 155.355048 233.841639 L 155.051853 233.888561 L 155.395553 234.070738 L 155.293625 234.604058 L 155.072053 234.074880 L 154.885098 234.541712 L 154.817297 233.600418 L 154.454421 233.907593 L 154.095217 233.784851 L 153.968167 233.224766 L 154.290744 233.064902 L 154.275384 232.467390 L 154.675666 232.457485 L 154.648185 231.951952 L 154.308915 231.938478 L 154.383771 231.680995 L 154.661721 231.879127 L 154.468777 231.262624 L 154.801219 230.944435 L 155.276542 229.003621 L 155.347174 227.979164 L 154.907144 228.203487 L 155.125149 226.752208 L 154.750563 227.570903 L 155.304290 225.826972 L 154.641048 227.491434 L 155.024945 225.487230 L 154.414328 226.656537 L 154.306680 225.642067 L 153.459846 225.423510 L 154.085372 225.837227 L 154.269538 226.817835 L 154.167920 226.459450 L 153.880699 226.679609 L 153.836258 226.282649 L 153.808406 227.153148 L 153.575535 227.489076 L 153.409620 226.978868 L 153.112864 227.909191 L 152.137484 226.901920 L 152.187011 226.591526 L 152.833950 226.580450 L 152.631736 226.488367 L 153.014281 226.211238 L 152.603640 226.346451 L 152.775726 225.982159 L 152.307970 225.615346 L 152.513814 226.018398 L 152.107541 226.679404 L 151.935435 226.042966 L 151.241882 226.530512 L 150.947278 226.247292 L 151.116801 226.026334 L 150.501549 225.898484 L 150.621810 224.918039 L 150.361455 224.676039 L 151.043873 224.222906 L 151.518950 224.251823 L 151.837959 224.691524 L 151.800326 224.348418 L 152.256351 224.563572 L 152.089494 224.268744 L 152.603128 223.955990 L 152.919675 224.979770 L 153.124247 224.648252 L 152.798778 224.246388 L 153.290467 224.458158 L 153.063029 224.146101 L 153.484272 223.728448 L 154.143124 224.713468 L 154.407457 224.284309 L 154.059635 223.864624 L 154.289021 223.357963 L 154.567957 223.535997 L 154.465598 223.024293 L 155.333227 223.208910 L 154.888482 222.788651 L 154.184244 222.816071 L 154.293123 222.230863 L 154.045997 222.646609 L 153.725840 222.480081 L 153.786566 221.674635 L 153.179517 221.747337 L 153.205767 221.098245 L 153.518295 220.947221 L 153.031138 220.925974 L 153.402135 220.484837 L 152.998427 220.534981 L 153.122216 220.054346 L 152.659321 220.921872 L 152.655054 220.197863 L 152.024258 220.059617 L 151.370469 220.457665 L 151.130418 220.135068 L 151.366881 219.623690 L 151.918187 219.743910 L 151.876413 218.975932 L 152.245359 218.549972 L 152.420500 219.111801 L 153.195205 219.723258 L 153.806151 219.535094 L 153.132347 219.574777 L 152.644248 218.972855 L 153.350864 218.141752 L 153.353838 217.057473 L 154.463527 217.535155 L 154.361109 216.900891 L 156.145444 216.718469 L 156.440354 216.195812 L 156.503622 217.019512 L 156.985980 217.379967 L 156.576734 216.876691 L 156.753722 214.608460 L 157.213828 214.548269 L 157.356362 215.049802 L 157.310115 214.488590 L 157.712470 214.683830 L 157.673421 214.421936 Z ' fill='#395E9C' fill-opacity='1' fill-rule='evenodd' stroke='#FFFFFF' stroke-opacity='1' stroke-width='0.21' stroke-linejoin='round' stroke-linecap='butt' title='Shetland&amp;lt;br/&amp;gt;Winter Year: 2022&amp;lt;br/&amp;gt;Items per Head: 15'/>\n <path id='svg_52553b2cf052ba37_e189' d='M 157.970897 227.654476 L 158.320463 227.739586 L 158.271448 228.181953 L 157.970897 227.654476 Z ' fill='#395E9C' fill-opacity='1' fill-rule='evenodd' stroke='#FFFFFF' stroke-opacity='1' stroke-width='0.21' stroke-linejoin='round' stroke-linecap='butt' title='Shetland&amp;lt;br/&amp;gt;Winter Year: 2022&amp;lt;br/&amp;gt;Items per Head: 15'/>\n <path id='svg_52553b2cf052ba37_e190' d='M 157.598873 226.778972 L 157.512328 227.488871 L 157.869585 227.397710 L 157.570163 228.854732 L 157.001464 228.469891 L 157.094634 227.797768 L 156.689080 227.262601 L 156.898101 226.999541 L 157.480131 227.292914 L 157.346211 226.960163 L 157.598873 226.778972 Z ' fill='#395E9C' fill-opacity='1' fill-rule='evenodd' stroke='#FFFFFF' stroke-opacity='1' stroke-width='0.21' stroke-linejoin='round' stroke-linecap='butt' title='Shetland&amp;lt;br/&amp;gt;Winter Year: 2022&amp;lt;br/&amp;gt;Items per Head: 15'/>\n <path id='svg_52553b2cf052ba37_e191' d='M 154.966004 229.013569 L 154.574704 230.317801 L 154.613465 229.446747 L 154.966004 229.013569 Z ' fill='#395E9C' fill-opacity='1' fill-rule='evenodd' stroke='#FFFFFF' stroke-opacity='1' stroke-width='0.21' stroke-linejoin='round' stroke-linecap='butt' title='Shetland&amp;lt;br/&amp;gt;Winter Year: 2022&amp;lt;br/&amp;gt;Items per Head: 15'/>\n <path id='svg_52553b2cf052ba37_e192' d='M 154.631069 229.013514 L 154.682783 229.067300 L 154.195606 230.302625 L 154.631069 229.013514 Z ' fill='#395E9C' fill-opacity='1' fill-rule='evenodd' stroke='#FFFFFF' stroke-opacity='1' stroke-width='0.21' stroke-linejoin='round' stroke-linecap='butt' title='Shetland&amp;lt;br/&amp;gt;Winter Year: 2022&amp;lt;br/&amp;gt;Items per Head: 15'/>\n <path id='svg_52553b2cf052ba37_e193' d='M 154.693259 228.829413 L 154.795169 228.527724 L 154.738505 228.834776 L 154.693259 228.829413 Z ' fill='#395E9C' fill-opacity='1' fill-rule='evenodd' stroke='#FFFFFF' stroke-opacity='1' stroke-width='0.21' stroke-linejoin='round' stroke-linecap='butt' title='Shetland&amp;lt;br/&amp;gt;Winter Year: 2022&amp;lt;br/&amp;gt;Items per Head: 15'/>\n <path id='svg_52553b2cf052ba37_e194' d='M 153.466737 222.330083 L 154.028379 222.838814 L 153.431770 223.370679 L 152.928392 222.702003 L 153.466737 222.330083 Z ' fill='#395E9C' fill-opacity='1' fill-rule='evenodd' stroke='#FFFFFF' stroke-opacity='1' stroke-width='0.21' stroke-linejoin='round' stroke-linecap='butt' title='Shetland&amp;lt;br/&amp;gt;Winter Year: 2022&amp;lt;br/&amp;gt;Items per Head: 15'/>\n <path id='svg_52553b2cf052ba37_e195' d='M 152.950232 223.453021 L 153.365323 223.776849 L 152.969409 224.148974 L 152.950232 223.453021 Z ' fill='#395E9C' fill-opacity='1' fill-rule='evenodd' stroke='#FFFFFF' stroke-opacity='1' stroke-width='0.21' stroke-linejoin='round' stroke-linecap='butt' title='Shetland&amp;lt;br/&amp;gt;Winter Year: 2022&amp;lt;br/&amp;gt;Items per Head: 15'/>\n <path id='svg_52553b2cf052ba37_e196' d='M 151.717267 226.468168 L 151.902458 226.863877 L 151.483163 226.712218 L 151.717267 226.468168 Z ' fill='#395E9C' fill-opacity='1' fill-rule='evenodd' stroke='#FFFFFF' stroke-opacity='1' stroke-width='0.21' stroke-linejoin='round' stroke-linecap='butt' title='Shetland&amp;lt;br/&amp;gt;Winter Year: 2022&amp;lt;br/&amp;gt;Items per Head: 15'/>\n <path id='svg_52553b2cf052ba37_e197' d='M 151.540279 241.458585 L 151.536793 242.150640 L 151.001011 242.403941 L 151.172666 241.493347 L 151.540279 241.458585 Z ' fill='#395E9C' fill-opacity='1' fill-rule='evenodd' stroke='#FFFFFF' stroke-opacity='1' stroke-width='0.21' stroke-linejoin='round' stroke-linecap='butt' title='Shetland&amp;lt;br/&amp;gt;Winter Year: 2022&amp;lt;br/&amp;gt;Items per Head: 15'/>\n <path id='svg_52553b2cf052ba37_e198' d='M 150.182827 223.356220 L 150.547940 223.693707 L 150.741989 223.426360 L 150.788420 223.931462 L 150.185597 223.968295 L 149.955184 223.573713 L 150.182827 223.356220 Z ' fill='#395E9C' fill-opacity='1' fill-rule='evenodd' stroke='#FFFFFF' stroke-opacity='1' stroke-width='0.21' stroke-linejoin='round' stroke-linecap='butt' title='Shetland&amp;lt;br/&amp;gt;Winter Year: 2022&amp;lt;br/&amp;gt;Items per Head: 15'/>\n <path id='svg_52553b2cf052ba37_e199' d='M 146.159385 227.673037 L 146.545147 228.088640 L 146.263670 228.773312 L 145.658876 228.224098 L 146.159385 227.673037 Z ' fill='#395E9C' fill-opacity='1' fill-rule='evenodd' stroke='#FFFFFF' stroke-opacity='1' stroke-width='0.21' stroke-linejoin='round' stroke-linecap='butt' title='Shetland&amp;lt;br/&amp;gt;Winter Year: 2022&amp;lt;br/&amp;gt;Items per Head: 15'/>\n <path id='svg_52553b2cf052ba37_e200' d='M 102.113984 249.751263 L 102.241034 250.116312 L 101.906849 250.171686 L 102.113984 249.751263 Z ' fill='#3C487E' fill-opacity='1' fill-rule='evenodd' stroke='#FFFFFF' stroke-opacity='1' stroke-width='0.21' stroke-linejoin='round' stroke-linecap='butt' title='Western Isles&amp;lt;br/&amp;gt;Winter Year: 2022&amp;lt;br/&amp;gt;Items per Head: 16.32'/>\n <path id='svg_52553b2cf052ba37_e201' d='M 90.339009 274.086205 L 89.355722 275.026792 L 89.731723 275.827605 L 89.439028 276.000532 L 89.883670 276.005926 L 90.242382 276.761455 L 89.759718 276.887685 L 90.285246 277.681361 L 88.636272 277.212458 L 88.924102 277.562616 L 88.496604 277.562514 L 88.578063 277.894093 L 88.941350 277.920960 L 89.331912 278.880999 L 88.596070 278.665169 L 88.624474 279.344900 L 87.842283 278.610493 L 88.129791 279.075091 L 87.955388 279.338747 L 87.768023 279.096563 L 87.796344 279.649039 L 87.495651 279.464875 L 87.584492 279.971841 L 86.987411 279.755129 L 87.249898 280.170158 L 86.776483 280.269501 L 86.651976 280.708811 L 86.284875 280.608669 L 86.268776 280.903128 L 84.515716 278.282770 L 85.119895 278.400487 L 85.141736 278.810450 L 85.853870 278.440111 L 86.274723 277.707815 L 86.671253 277.713250 L 86.865776 276.881635 L 88.486371 277.113871 L 87.896324 276.554730 L 88.130469 276.338817 L 87.354614 276.238880 L 87.517636 275.962961 L 87.260255 276.142614 L 86.355013 275.494137 L 86.398184 275.751313 L 86.057436 275.779512 L 85.389067 275.381753 L 85.315339 274.752452 L 85.016533 274.860531 L 85.426188 274.135559 L 85.801595 274.427907 L 86.120500 273.960108 L 87.599976 273.621618 L 85.989965 273.908735 L 85.734225 273.709086 L 86.251241 273.455192 L 85.794622 273.392641 L 86.204995 272.837479 L 85.766114 273.264156 L 85.457257 273.159257 L 84.972337 271.790833 L 85.572514 270.982289 L 85.469665 270.430100 L 86.232578 270.467876 L 85.966995 270.163694 L 86.542666 269.110894 L 86.498039 269.383699 L 87.077012 269.705126 L 87.294298 269.362022 L 87.881455 269.914416 L 87.834860 270.146816 L 87.210031 270.100796 L 88.020810 270.530386 L 88.258604 272.181107 L 88.077311 270.708910 L 88.266294 270.902099 L 88.188363 270.531719 L 88.417032 270.685941 L 88.529500 270.274666 L 89.755431 270.531329 L 89.900200 271.134973 L 90.106413 271.048325 L 90.244004 270.743364 L 89.674752 270.481370 L 89.904548 270.096714 L 89.130110 269.091823 L 89.047461 268.620539 L 89.573829 268.505856 L 88.984806 268.460062 L 89.280538 267.937610 L 89.857851 267.927252 L 91.195224 266.915654 L 91.324612 267.190323 L 92.462664 266.760877 L 92.831774 266.059860 L 95.548503 264.321033 L 96.119766 263.535027 L 96.999392 264.732554 L 96.804459 265.186304 L 97.077222 265.870976 L 96.473864 266.924083 L 97.044203 267.580558 L 96.156168 268.104199 L 95.509169 269.166678 L 95.055010 269.209356 L 94.812025 269.976268 L 95.374901 270.550257 L 96.994469 269.374571 L 97.249061 269.502954 L 96.978001 270.356719 L 95.873604 271.226769 L 95.328243 270.614940 L 94.630526 270.991947 L 94.119560 270.400197 L 94.300485 271.752788 L 93.625205 272.019315 L 94.263570 271.976535 L 94.235986 272.236173 L 92.835159 271.910949 L 93.599404 272.391317 L 93.035198 272.806551 L 91.056567 273.132226 L 93.430066 273.131570 L 93.859554 272.656799 L 93.845301 273.281077 L 94.077251 273.118137 L 94.174255 273.493542 L 94.070687 274.124176 L 93.339113 274.080780 L 94.243779 274.344642 L 93.826228 275.225376 L 93.248834 274.807517 L 93.087228 275.041620 L 92.981178 274.734506 L 91.619113 274.970271 L 92.776812 275.122629 L 93.052446 275.436509 L 92.719287 276.578828 L 92.123004 276.787604 L 91.815173 276.083038 L 91.844397 277.013605 L 91.469504 276.798062 L 91.385829 277.118199 L 90.696336 275.890361 L 91.056772 276.932188 L 90.737353 276.685985 L 90.511350 276.888812 L 89.960597 275.865853 L 89.891238 274.725483 L 90.339009 274.086205 Z M 90.462089 273.910485 L 90.556469 273.775739 L 91.488823 273.848728 L 90.269003 273.659168 L 90.462089 273.910485 Z ' fill='#3C487E' fill-opacity='1' fill-rule='evenodd' stroke='#FFFFFF' stroke-opacity='1' stroke-width='0.21' stroke-linejoin='round' stroke-linecap='butt' title='Western Isles&amp;lt;br/&amp;gt;Winter Year: 2022&amp;lt;br/&amp;gt;Items per Head: 16.32'/>\n <path id='svg_52553b2cf052ba37_e202' d='M 89.814516 277.710872 L 90.451671 277.944175 L 90.534526 278.287178 L 89.925343 278.367489 L 89.814516 277.710872 Z ' fill='#3C487E' fill-opacity='1' fill-rule='evenodd' stroke='#FFFFFF' stroke-opacity='1' stroke-width='0.21' stroke-linejoin='round' stroke-linecap='butt' title='Western Isles&amp;lt;br/&amp;gt;Winter Year: 2022&amp;lt;br/&amp;gt;Items per Head: 16.32'/>\n <path id='svg_52553b2cf052ba37_e203' d='M 88.165393 268.837415 L 88.657390 268.965080 L 88.773858 269.547088 L 89.022338 269.380888 L 89.366879 270.315150 L 88.365268 270.092860 L 88.559668 269.683120 L 88.165393 268.837415 Z ' fill='#3C487E' fill-opacity='1' fill-rule='evenodd' stroke='#FFFFFF' stroke-opacity='1' stroke-width='0.21' stroke-linejoin='round' stroke-linecap='butt' title='Western Isles&amp;lt;br/&amp;gt;Winter Year: 2022&amp;lt;br/&amp;gt;Items per Head: 16.32'/>\n <path id='svg_52553b2cf052ba37_e204' d='M 86.180692 276.473927 L 86.425768 277.165062 L 86.079997 277.431773 L 85.663162 277.076054 L 85.261403 277.488274 L 85.184086 277.049495 L 86.180692 276.473927 Z ' fill='#3C487E' fill-opacity='1' fill-rule='evenodd' stroke='#FFFFFF' stroke-opacity='1' stroke-width='0.21' stroke-linejoin='round' stroke-linecap='butt' title='Western Isles&amp;lt;br/&amp;gt;Winter Year: 2022&amp;lt;br/&amp;gt;Items per Head: 16.32'/>\n <path id='svg_52553b2cf052ba37_e205' d='M 84.896046 273.708265 L 85.171576 274.517896 L 84.580626 274.372431 L 84.381900 273.951290 L 84.896046 273.708265 Z ' fill='#3C487E' fill-opacity='1' fill-rule='evenodd' stroke='#FFFFFF' stroke-opacity='1' stroke-width='0.21' stroke-linejoin='round' stroke-linecap='butt' title='Western Isles&amp;lt;br/&amp;gt;Winter Year: 2022&amp;lt;br/&amp;gt;Items per Head: 16.32'/>\n <path id='svg_52553b2cf052ba37_e206' d='M 85.060298 279.775659 L 85.076519 280.310232 L 84.811141 279.895244 L 85.060298 279.775659 Z ' fill='#3C487E' fill-opacity='1' fill-rule='evenodd' stroke='#FFFFFF' stroke-opacity='1' stroke-width='0.21' stroke-linejoin='round' stroke-linecap='butt' title='Western Isles&amp;lt;br/&amp;gt;Winter Year: 2022&amp;lt;br/&amp;gt;Items per Head: 16.32'/>\n <path id='svg_52553b2cf052ba37_e207' d='M 80.985707 287.660116 L 81.468751 287.967129 L 81.218601 287.653760 L 80.490347 287.421091 L 80.467685 286.370465 L 81.450838 285.858269 L 81.574074 285.920887 L 81.415256 285.711120 L 82.186270 285.733681 L 81.403872 285.681485 L 81.708135 285.233050 L 81.402868 284.827085 L 81.383980 285.647135 L 80.929822 285.893338 L 80.977196 285.303207 L 80.538828 284.729792 L 80.811078 284.376946 L 80.509399 284.696365 L 80.152450 284.156869 L 80.598507 284.056995 L 81.500550 284.547576 L 80.583844 284.022971 L 79.708853 284.161443 L 79.039376 283.173286 L 79.445690 283.050052 L 79.792630 281.989870 L 80.358355 281.954267 L 80.900391 282.426801 L 80.424084 282.004594 L 81.258879 281.873792 L 81.231071 282.068918 L 81.657767 281.940547 L 82.050298 281.305402 L 82.175574 282.015770 L 82.314960 281.926396 L 82.513460 282.317717 L 82.363770 281.874920 L 82.670965 282.036896 L 82.733024 281.551503 L 83.357485 281.607983 L 83.633615 281.361524 L 83.527416 281.571724 L 83.991420 282.191877 L 83.568536 282.466691 L 84.198452 282.762934 L 84.610650 282.571406 L 83.944456 282.345589 L 84.409996 282.250736 L 85.051500 282.846917 L 84.529560 283.551380 L 84.153805 283.105569 L 84.403822 282.981184 L 83.998699 283.182537 L 83.765417 282.915414 L 83.826736 283.220170 L 83.393703 282.792056 L 83.799152 282.671364 L 83.132834 282.734428 L 83.494233 282.932027 L 83.328321 283.179193 L 83.910514 283.353473 L 83.531600 283.392010 L 83.902003 283.486307 L 83.499115 283.813376 L 84.492133 283.860441 L 84.252286 284.484000 L 82.532498 284.635620 L 83.954606 284.712361 L 84.000546 285.213074 L 83.547533 285.626135 L 82.855560 285.472198 L 83.176518 285.765468 L 82.479540 285.733064 L 82.214652 285.441395 L 82.353310 285.804331 L 82.958513 285.769468 L 83.021167 286.534533 L 82.256347 286.013087 L 81.891268 286.082059 L 82.370312 286.325470 L 82.249250 286.618413 L 82.482862 286.401106 L 83.039623 286.815910 L 82.616639 286.762792 L 82.804701 287.128559 L 82.425910 286.917426 L 82.396993 287.244329 L 82.236720 286.973414 L 82.086290 287.238383 L 82.970818 287.554622 L 82.536656 287.850250 L 83.002504 287.893318 L 82.452571 287.913417 L 82.591002 288.191306 L 81.577908 287.679661 L 82.196420 288.205867 L 81.812863 288.185839 L 81.835985 288.200534 L 81.412610 288.213168 L 82.048452 288.606602 L 81.659511 288.739392 L 82.415450 289.302452 L 81.962215 289.271462 L 82.091664 289.464795 L 82.602590 289.335571 L 82.098639 289.731717 L 82.477592 289.904784 L 82.530810 290.413187 L 82.873608 290.497887 L 82.046403 291.331861 L 81.802761 292.139380 L 81.433153 292.081286 L 81.858545 292.469770 L 81.980570 293.539386 L 81.662074 293.836964 L 81.033102 293.456203 L 81.393722 293.870186 L 80.930417 293.576055 L 80.657326 293.737723 L 80.812513 294.070431 L 81.918531 294.169507 L 81.948105 294.548072 L 82.310857 294.622025 L 82.067526 295.109202 L 81.448479 294.771941 L 80.259073 294.785928 L 79.798741 294.137638 L 79.837954 292.160422 L 79.461091 291.566908 L 79.889716 291.305466 L 79.779114 290.537795 L 80.301485 290.165301 L 80.072384 288.258040 L 80.985707 287.660116 Z M 82.491937 284.633431 L 82.575683 284.255720 L 81.990906 284.606394 L 82.491937 284.633431 Z M 81.407377 292.057747 L 81.563429 292.034684 L 81.397310 291.797812 L 80.832221 291.948733 L 80.682511 291.650745 L 80.792067 291.983844 L 81.307792 291.966802 L 81.407377 292.057747 Z ' fill='#3C487E' fill-opacity='1' fill-rule='evenodd' stroke='#FFFFFF' stroke-opacity='1' stroke-width='0.21' stroke-linejoin='round' stroke-linecap='butt' title='Western Isles&amp;lt;br/&amp;gt;Winter Year: 2022&amp;lt;br/&amp;gt;Items per Head: 16.32'/>\n <path id='svg_52553b2cf052ba37_e208' d='M 83.660211 281.308882 L 83.096432 281.154254 L 83.516138 280.551717 L 83.999130 280.499626 L 84.436965 281.248081 L 83.842712 280.947654 L 83.660211 281.308882 Z ' fill='#3C487E' fill-opacity='1' fill-rule='evenodd' stroke='#FFFFFF' stroke-opacity='1' stroke-width='0.21' stroke-linejoin='round' stroke-linecap='butt' title='Western Isles&amp;lt;br/&amp;gt;Winter Year: 2022&amp;lt;br/&amp;gt;Items per Head: 16.32'/>\n <path id='svg_52553b2cf052ba37_e209' d='M 83.323767 285.858781 L 83.624934 286.155537 L 83.295466 286.651145 L 83.004164 286.134497 L 83.384370 286.140464 L 83.124324 285.945532 L 83.323767 285.858781 Z ' fill='#3C487E' fill-opacity='1' fill-rule='evenodd' stroke='#FFFFFF' stroke-opacity='1' stroke-width='0.21' stroke-linejoin='round' stroke-linecap='butt' title='Western Isles&amp;lt;br/&amp;gt;Winter Year: 2022&amp;lt;br/&amp;gt;Items per Head: 16.32'/>\n <path id='svg_52553b2cf052ba37_e210' d='M 83.260807 279.383148 L 83.614885 279.741122 L 83.040957 279.972766 L 82.763991 279.671393 L 83.260807 279.383148 Z ' fill='#3C487E' fill-opacity='1' fill-rule='evenodd' stroke='#FFFFFF' stroke-opacity='1' stroke-width='0.21' stroke-linejoin='round' stroke-linecap='butt' title='Western Isles&amp;lt;br/&amp;gt;Winter Year: 2022&amp;lt;br/&amp;gt;Items per Head: 16.32'/>\n <path id='svg_52553b2cf052ba37_e211' d='M 83.097355 287.959355 L 83.088434 288.326557 L 82.695595 288.401004 L 82.878222 288.506725 L 82.513891 288.361422 L 83.097355 287.959355 Z ' fill='#3C487E' fill-opacity='1' fill-rule='evenodd' stroke='#FFFFFF' stroke-opacity='1' stroke-width='0.21' stroke-linejoin='round' stroke-linecap='butt' title='Western Isles&amp;lt;br/&amp;gt;Winter Year: 2022&amp;lt;br/&amp;gt;Items per Head: 16.32'/>\n <path id='svg_52553b2cf052ba37_e212' d='M 82.424578 280.804177 L 82.497382 281.289814 L 82.251793 281.112418 L 82.424578 280.804177 Z ' fill='#3C487E' fill-opacity='1' fill-rule='evenodd' stroke='#FFFFFF' stroke-opacity='1' stroke-width='0.21' stroke-linejoin='round' stroke-linecap='butt' title='Western Isles&amp;lt;br/&amp;gt;Winter Year: 2022&amp;lt;br/&amp;gt;Items per Head: 16.32'/>\n <path id='svg_52553b2cf052ba37_e213' d='M 82.209320 288.101355 L 82.465552 288.175472 L 82.256367 288.428465 L 82.209320 288.101355 Z ' fill='#3C487E' fill-opacity='1' fill-rule='evenodd' stroke='#FFFFFF' stroke-opacity='1' stroke-width='0.21' stroke-linejoin='round' stroke-linecap='butt' title='Western Isles&amp;lt;br/&amp;gt;Winter Year: 2022&amp;lt;br/&amp;gt;Items per Head: 16.32'/>\n <path id='svg_52553b2cf052ba37_e214' d='M 80.959455 295.011686 L 81.561173 295.175034 L 81.193027 296.031281 L 80.959455 295.011686 Z ' fill='#3C487E' fill-opacity='1' fill-rule='evenodd' stroke='#FFFFFF' stroke-opacity='1' stroke-width='0.21' stroke-linejoin='round' stroke-linecap='butt' title='Western Isles&amp;lt;br/&amp;gt;Winter Year: 2022&amp;lt;br/&amp;gt;Items per Head: 16.32'/>\n <path id='svg_52553b2cf052ba37_e215' d='M 80.753716 296.598503 L 80.788620 296.860826 L 80.444183 296.715625 L 80.753716 296.598503 Z ' fill='#3C487E' fill-opacity='1' fill-rule='evenodd' stroke='#FFFFFF' stroke-opacity='1' stroke-width='0.21' stroke-linejoin='round' stroke-linecap='butt' title='Western Isles&amp;lt;br/&amp;gt;Winter Year: 2022&amp;lt;br/&amp;gt;Items per Head: 16.32'/>\n <path id='svg_52553b2cf052ba37_e216' d='M 80.402344 296.726086 L 80.646087 297.048991 L 80.249763 296.880103 L 80.402344 296.726086 Z ' fill='#3C487E' fill-opacity='1' fill-rule='evenodd' stroke='#FFFFFF' stroke-opacity='1' stroke-width='0.21' stroke-linejoin='round' stroke-linecap='butt' title='Western Isles&amp;lt;br/&amp;gt;Winter Year: 2022&amp;lt;br/&amp;gt;Items per Head: 16.32'/>\n <path id='svg_52553b2cf052ba37_e217' d='M 80.008481 295.708356 L 80.210283 295.960917 L 79.873125 296.159439 L 80.008481 295.708356 Z ' fill='#3C487E' fill-opacity='1' fill-rule='evenodd' stroke='#FFFFFF' stroke-opacity='1' stroke-width='0.21' stroke-linejoin='round' stroke-linecap='butt' title='Western Isles&amp;lt;br/&amp;gt;Winter Year: 2022&amp;lt;br/&amp;gt;Items per Head: 16.32'/>\n <path id='svg_52553b2cf052ba37_e218' d='M 79.249772 295.718507 L 79.596386 295.914343 L 79.456189 296.678321 L 79.880406 297.079240 L 79.426985 296.814005 L 79.695872 297.056538 L 79.391609 297.048786 L 80.007764 297.597179 L 79.510454 297.276675 L 79.675834 297.574190 L 79.187488 297.933579 L 79.221882 298.255910 L 78.632981 298.348095 L 78.380134 297.976954 L 78.368423 298.236018 L 78.030876 298.186101 L 77.910225 298.369158 L 78.618933 298.604758 L 78.180033 298.513413 L 77.953765 298.762242 L 78.316332 298.906642 L 77.734919 299.037897 L 77.804954 298.602196 L 77.363100 298.430335 L 77.560495 298.101687 L 78.023431 298.187269 L 77.649295 297.948488 L 78.307186 297.468099 L 78.439055 296.882545 L 78.182925 296.693169 L 79.025411 296.567864 L 79.249772 295.718507 Z ' fill='#3C487E' fill-opacity='1' fill-rule='evenodd' stroke='#FFFFFF' stroke-opacity='1' stroke-width='0.21' stroke-linejoin='round' stroke-linecap='butt' title='Western Isles&amp;lt;br/&amp;gt;Winter Year: 2022&amp;lt;br/&amp;gt;Items per Head: 16.32'/>\n <path id='svg_52553b2cf052ba37_e219' d='M 78.004296 299.218473 L 78.443791 299.633359 L 77.894269 299.557989 L 78.004296 299.218473 Z ' fill='#3C487E' fill-opacity='1' fill-rule='evenodd' stroke='#FFFFFF' stroke-opacity='1' stroke-width='0.21' stroke-linejoin='round' stroke-linecap='butt' title='Western Isles&amp;lt;br/&amp;gt;Winter Year: 2022&amp;lt;br/&amp;gt;Items per Head: 16.32'/>\n <path id='svg_52553b2cf052ba37_e220' d='M 77.701080 284.651350 L 77.888731 284.960514 L 78.320024 284.846692 L 78.036803 285.294799 L 77.960408 284.995686 L 77.255535 284.995069 L 77.701080 284.651350 Z ' fill='#3C487E' fill-opacity='1' fill-rule='evenodd' stroke='#FFFFFF' stroke-opacity='1' stroke-width='0.21' stroke-linejoin='round' stroke-linecap='butt' title='Western Isles&amp;lt;br/&amp;gt;Winter Year: 2022&amp;lt;br/&amp;gt;Items per Head: 16.32'/>\n <path id='svg_52553b2cf052ba37_e221' d='M 77.300345 300.107410 L 77.631556 300.427135 L 77.011793 300.356383 L 77.300345 300.107410 Z ' fill='#3C487E' fill-opacity='1' fill-rule='evenodd' stroke='#FFFFFF' stroke-opacity='1' stroke-width='0.21' stroke-linejoin='round' stroke-linecap='butt' title='Western Isles&amp;lt;br/&amp;gt;Winter Year: 2022&amp;lt;br/&amp;gt;Items per Head: 16.32'/>\n <path id='svg_52553b2cf052ba37_e222' d='M 76.331734 301.657128 L 76.724162 301.827655 L 76.109114 301.748596 L 76.331734 301.657128 Z ' fill='#3C487E' fill-opacity='1' fill-rule='evenodd' stroke='#FFFFFF' stroke-opacity='1' stroke-width='0.21' stroke-linejoin='round' stroke-linecap='butt' title='Western Isles&amp;lt;br/&amp;gt;Winter Year: 2022&amp;lt;br/&amp;gt;Items per Head: 16.32'/>\n <path id='svg_52553b2cf052ba37_e223' d='M 76.653222 300.780004 L 76.631259 301.395236 L 76.068713 301.413385 L 76.195967 300.901599 L 76.653222 300.780004 Z ' fill='#3C487E' fill-opacity='1' fill-rule='evenodd' stroke='#FFFFFF' stroke-opacity='1' stroke-width='0.21' stroke-linejoin='round' stroke-linecap='butt' title='Western Isles&amp;lt;br/&amp;gt;Winter Year: 2022&amp;lt;br/&amp;gt;Items per Head: 16.32'/>\n <path id='svg_52553b2cf052ba37_e224' d='M 66.495181 276.933930 L 67.103461 277.054008 L 67.259531 277.366249 L 66.946367 277.559233 L 67.199748 277.790158 L 66.515690 277.364709 L 66.495181 276.933930 Z ' fill='#3C487E' fill-opacity='1' fill-rule='evenodd' stroke='#FFFFFF' stroke-opacity='1' stroke-width='0.21' stroke-linejoin='round' stroke-linecap='butt' title='Western Isles&amp;lt;br/&amp;gt;Winter Year: 2022&amp;lt;br/&amp;gt;Items per Head: 16.32'/>\n <path id='svg_52553b2cf052ba37_e225' d='M 135.722306 312.183008 L 138.096812 312.384154 L 137.189930 312.450910 L 137.080202 312.677376 L 136.786222 312.335653 L 136.852087 314.619771 L 138.644098 315.275779 L 139.571427 316.162871 L 139.319194 316.617992 L 136.714853 318.360489 L 135.933583 318.269864 L 134.997190 317.652909 L 132.322423 319.858938 L 132.024579 321.064852 L 130.688188 321.162452 L 130.130709 321.670054 L 129.318698 321.839434 L 129.209840 322.293592 L 128.272154 322.133053 L 128.275825 321.782995 L 127.924702 321.648090 L 125.156291 321.055091 L 124.787529 320.580381 L 125.095011 319.982234 L 126.224144 319.841812 L 125.783171 319.542102 L 126.849281 319.197110 L 127.014291 318.750007 L 128.942842 319.262900 L 129.541646 319.105580 L 129.527063 318.681508 L 129.865432 318.493159 L 130.487206 318.559073 L 130.333270 318.219864 L 130.951045 317.984038 L 130.911156 317.437223 L 130.590691 317.318786 L 130.724775 317.118890 L 129.615024 316.962513 L 129.802286 316.612024 L 129.422758 316.296031 L 130.043220 315.836335 L 130.573958 315.863489 L 130.496968 315.284925 L 131.073541 314.699287 L 130.812306 314.448243 L 135.722306 312.183008 Z ' fill='#130B12' fill-opacity='1' fill-rule='evenodd' stroke='#FFFFFF' stroke-opacity='1' stroke-width='0.21' stroke-linejoin='round' stroke-linecap='butt' title='Fife&amp;lt;br/&amp;gt;Winter Year: 2022&amp;lt;br/&amp;gt;Items per Head: 21.02'/>\n <path id='svg_52553b2cf052ba37_e226' d='M 136.096011 300.158886 L 137.455923 300.644833 L 138.422177 301.675894 L 138.735442 302.348980 L 138.608147 303.339515 L 139.275614 304.688804 L 140.352798 304.656811 L 141.200411 305.523271 L 141.714494 305.373170 L 141.484615 306.906953 L 140.771846 307.448251 L 140.695083 308.128864 L 140.977730 308.317522 L 140.241252 309.620811 L 138.115288 311.194953 L 137.798783 312.021382 L 136.781380 311.670216 L 133.976486 312.205915 L 134.229847 312.319655 L 133.367367 312.521047 L 133.392182 312.976950 L 133.076454 313.137017 L 133.310660 313.178035 L 132.972026 313.169135 L 133.202889 313.259042 L 130.962488 314.166397 L 131.486560 314.158829 L 130.812306 314.448243 L 131.073541 314.699287 L 130.496968 315.284925 L 130.573958 315.863489 L 130.043220 315.836335 L 129.422758 316.296031 L 129.802286 316.612024 L 129.615024 316.962513 L 130.724775 317.118890 L 130.951045 317.984038 L 130.333270 318.219864 L 130.487206 318.559073 L 129.527063 318.681508 L 129.541646 319.105580 L 127.374706 319.045676 L 127.076390 318.734133 L 126.849281 319.197110 L 126.095823 319.310419 L 126.007800 318.712313 L 126.711875 318.422876 L 126.952827 317.902928 L 126.410771 317.672906 L 125.780792 318.045707 L 124.891650 318.014123 L 124.347562 317.356726 L 123.628230 317.831292 L 123.509486 317.134927 L 123.172636 317.388720 L 122.834391 316.930869 L 122.326396 317.055662 L 121.532271 315.961335 L 121.118451 316.082189 L 120.612878 315.591875 L 120.177280 315.799215 L 119.230919 315.222313 L 118.625203 314.631876 L 118.625511 313.371327 L 119.186415 313.336770 L 119.167548 311.711375 L 119.665594 312.026282 L 120.479779 311.580532 L 119.806180 310.533065 L 117.982367 311.279059 L 117.598244 309.804504 L 117.178335 309.605676 L 116.706232 310.045991 L 115.562682 310.351054 L 115.363751 310.083418 L 115.082272 310.495023 L 114.467226 310.464772 L 113.734870 311.180105 L 113.122182 310.842332 L 113.520761 309.953600 L 113.005489 309.362856 L 114.248093 308.823996 L 114.744806 308.926232 L 113.837823 307.744947 L 113.935237 307.021411 L 113.490308 307.352006 L 112.847779 307.268946 L 112.852187 306.486140 L 113.603822 306.557817 L 114.443230 306.168568 L 114.527724 304.647561 L 115.078273 304.382902 L 115.435222 303.644494 L 116.394504 304.397155 L 117.287542 303.093845 L 117.828452 303.302723 L 118.181811 302.687163 L 119.503270 302.295554 L 119.844530 301.363755 L 120.312122 301.709116 L 122.109377 301.903742 L 122.813430 300.609866 L 123.331781 301.212095 L 124.252404 300.883858 L 124.733019 301.245525 L 125.273516 301.019009 L 125.641644 301.485780 L 126.086675 301.065974 L 127.237198 301.125550 L 127.492731 302.203246 L 127.785900 302.023715 L 128.675247 302.487308 L 129.130226 302.183272 L 129.845662 302.470390 L 130.950655 301.746238 L 130.967370 301.260393 L 132.998215 302.211984 L 133.487956 300.621864 L 136.096011 300.158886 Z ' fill='#382C57' fill-opacity='1' fill-rule='evenodd' stroke='#FFFFFF' stroke-opacity='1' stroke-width='0.21' stroke-linejoin='round' stroke-linecap='butt' title='Tayside&amp;lt;br/&amp;gt;Winter Year: 2022&amp;lt;br/&amp;gt;Items per Head: 18.1'/>\n <path id='svg_52553b2cf052ba37_e227' d='M 113.999839 320.325627 L 115.387213 320.643794 L 115.076529 320.943360 L 115.258152 321.774607 L 116.100106 322.722444 L 116.716915 322.536555 L 117.099419 323.029250 L 117.722977 323.087391 L 117.895207 322.283564 L 117.647465 321.534391 L 118.892058 321.929754 L 119.358072 321.483736 L 119.958229 322.719881 L 119.811512 323.261263 L 120.740462 323.033701 L 120.465381 323.490629 L 120.624526 323.961480 L 118.867223 324.144867 L 119.232006 324.831017 L 120.290055 324.850437 L 120.355230 325.766733 L 119.995246 325.796736 L 119.877466 326.168205 L 119.084345 326.210904 L 118.699956 325.710663 L 118.340280 325.838922 L 118.659759 326.711904 L 117.630074 327.396086 L 118.380025 328.460308 L 118.357466 329.190079 L 117.984315 329.516677 L 116.665932 328.999863 L 116.282650 328.402761 L 116.067496 328.609650 L 115.590143 328.103030 L 115.207722 328.147205 L 115.353681 327.733326 L 114.912156 327.449797 L 114.414785 327.843722 L 113.915487 326.936286 L 113.327593 327.416101 L 113.118983 327.075867 L 112.752456 327.435195 L 112.475243 326.418265 L 112.029802 326.369557 L 112.019546 326.010865 L 111.248840 325.545939 L 111.678820 325.335216 L 111.092361 324.332560 L 109.893890 324.665349 L 110.124097 323.148220 L 111.214550 322.519739 L 112.463963 323.011614 L 112.601226 323.409168 L 113.485365 323.402769 L 113.526504 322.262851 L 112.981596 321.890315 L 113.742745 321.519953 L 113.521275 320.833928 L 113.840467 320.061191 L 113.999839 320.325627 Z ' fill='#1E1625' fill-opacity='1' fill-rule='evenodd' stroke='#FFFFFF' stroke-opacity='1' stroke-width='0.21' stroke-linejoin='round' stroke-linecap='butt' title='Greater Glasgow and Clyde&amp;lt;br/&amp;gt;Winter Year: 2022&amp;lt;br/&amp;gt;Items per Head: 20.18'/>\n <path id='svg_52553b2cf052ba37_e228' d='M 120.797679 321.518785 L 121.178746 321.590359 L 121.035864 322.004240 L 121.570580 322.064206 L 121.563054 322.586350 L 122.102835 322.658334 L 122.185257 323.106506 L 123.178316 323.217947 L 122.608428 323.688698 L 123.802509 324.478107 L 123.612807 324.950683 L 124.383985 325.225886 L 125.034779 325.028082 L 124.529821 325.542310 L 124.955904 326.579359 L 124.572745 327.331403 L 126.541757 326.704870 L 126.998418 327.275250 L 128.224472 327.760437 L 128.454269 328.714326 L 128.712040 329.028329 L 129.005658 328.902695 L 127.822302 330.413919 L 127.858459 331.158846 L 127.231885 331.260178 L 127.744678 332.383957 L 127.746626 333.425476 L 127.023500 335.096603 L 127.425772 335.811096 L 126.488334 336.413654 L 126.517967 337.706710 L 126.074062 337.761569 L 125.645951 338.529815 L 124.730147 337.783308 L 124.754101 336.868654 L 124.206875 336.587874 L 123.314963 334.978476 L 122.417311 334.604095 L 121.449724 334.700381 L 120.852109 334.258527 L 120.750181 333.810419 L 121.660037 332.360270 L 120.637181 331.525065 L 120.077608 332.074691 L 119.225895 331.931029 L 118.230826 332.412566 L 117.990878 332.134062 L 118.896222 331.187455 L 118.512222 330.946419 L 118.022256 329.575843 L 118.357466 329.190079 L 118.353713 328.329424 L 117.631078 327.390016 L 118.659759 326.711904 L 118.294424 326.284221 L 118.390034 325.781130 L 118.707914 325.715585 L 119.084345 326.210904 L 119.877466 326.168205 L 119.995246 325.796736 L 120.355230 325.766733 L 120.290055 324.850437 L 119.232006 324.831017 L 118.867223 324.144867 L 120.624526 323.961480 L 120.465381 323.490629 L 120.737283 323.027138 L 119.811512 323.261263 L 119.958229 322.719881 L 119.468202 322.031926 L 120.797679 321.518785 Z ' fill='#241A2F' fill-opacity='1' fill-rule='evenodd' stroke='#FFFFFF' stroke-opacity='1' stroke-width='0.21' stroke-linejoin='round' stroke-linecap='butt' title='Lanarkshire&amp;lt;br/&amp;gt;Winter Year: 2022&amp;lt;br/&amp;gt;Items per Head: 19.74'/>\n <\/g>\n <g clip-path='url(#svg_52553b2cf052ba37_c5)'>\n <path id='svg_52553b2cf052ba37_e229' d='M 212.996625 159.366879 L 214.263532 160.399682 L 214.629094 162.009798 L 214.288983 162.631428 L 215.146009 163.329104 L 214.562606 163.797885 L 215.154959 164.310940 L 215.043057 165.564418 L 214.622101 165.925694 L 212.772620 165.857377 L 211.556935 164.226757 L 211.763905 163.076604 L 211.189014 161.390956 L 211.628201 160.287194 L 212.996625 159.366879 Z ' fill='#281E37' fill-opacity='1' fill-rule='evenodd' stroke='#FFFFFF' stroke-opacity='1' stroke-width='0.21' stroke-linejoin='round' stroke-linecap='butt' title='Ayrshire and Arran&amp;lt;br/&amp;gt;Winter Year: 2020&amp;lt;br/&amp;gt;Items per Head: 19.38'/>\n <path id='svg_52553b2cf052ba37_e230' d='M 217.189344 159.245099 L 216.945233 159.813819 L 216.795050 159.533797 L 217.189344 159.245099 Z ' fill='#281E37' fill-opacity='1' fill-rule='evenodd' stroke='#FFFFFF' stroke-opacity='1' stroke-width='0.21' stroke-linejoin='round' stroke-linecap='butt' title='Ayrshire and Arran&amp;lt;br/&amp;gt;Winter Year: 2020&amp;lt;br/&amp;gt;Items per Head: 19.38'/>\n <path id='svg_52553b2cf052ba37_e231' d='M 217.687636 157.940416 L 217.677300 158.858700 L 217.089836 159.077300 L 217.346028 158.117609 L 217.687636 157.940416 Z ' fill='#281E37' fill-opacity='1' fill-rule='evenodd' stroke='#FFFFFF' stroke-opacity='1' stroke-width='0.21' stroke-linejoin='round' stroke-linecap='butt' title='Ayrshire and Arran&amp;lt;br/&amp;gt;Winter Year: 2020&amp;lt;br/&amp;gt;Items per Head: 19.38'/>\n <path id='svg_52553b2cf052ba37_e232' d='M 219.124845 155.797800 L 219.704844 156.727344 L 219.274864 156.938067 L 220.045570 157.402993 L 220.055826 157.761685 L 220.501268 157.810393 L 220.778481 158.827323 L 221.145007 158.467995 L 221.353617 158.808229 L 221.941511 158.328414 L 222.440810 159.235850 L 222.938180 158.841925 L 223.379706 159.125454 L 223.233746 159.539333 L 223.616167 159.495158 L 224.093520 160.001778 L 224.308675 159.794889 L 225.049110 160.612867 L 226.048281 160.856548 L 226.538247 162.338547 L 226.922247 162.579583 L 226.016902 163.526190 L 226.240854 163.799464 L 227.251919 163.323157 L 228.103633 163.466819 L 228.663206 162.917193 L 229.686062 163.752398 L 229.682986 164.101245 L 228.776206 165.202547 L 229.268921 165.865378 L 228.857318 166.240376 L 229.040150 166.485143 L 227.876913 167.011860 L 227.631139 167.987078 L 227.901727 168.401346 L 227.467359 169.568582 L 227.083032 169.918251 L 226.355044 169.108025 L 225.068696 169.244242 L 224.261792 170.415581 L 223.381674 172.996359 L 223.135716 173.119901 L 222.948229 172.350549 L 222.632810 172.759077 L 221.508948 172.602187 L 220.183285 173.547523 L 220.190360 174.133344 L 220.604016 174.435639 L 220.518596 175.001877 L 219.439855 175.277099 L 219.104234 175.040124 L 218.464475 175.386203 L 218.303894 175.074989 L 217.221973 175.156406 L 217.109382 174.649953 L 216.743716 174.512545 L 216.033613 175.731976 L 215.142215 176.010857 L 215.032536 174.776550 L 215.918438 172.702924 L 217.696455 170.864735 L 218.068937 169.547176 L 217.949611 168.696811 L 218.922118 167.864430 L 219.360891 166.516199 L 220.645801 165.916455 L 221.043428 164.862532 L 220.259084 163.678126 L 220.630272 163.558170 L 220.364723 162.573533 L 219.384749 161.774237 L 218.576092 161.562772 L 218.354845 160.859114 L 217.570903 160.078419 L 217.614419 159.372544 L 218.295523 158.396789 L 217.909865 157.365873 L 217.936547 156.086024 L 219.124845 155.797800 Z ' fill='#281E37' fill-opacity='1' fill-rule='evenodd' stroke='#FFFFFF' stroke-opacity='1' stroke-width='0.21' stroke-linejoin='round' stroke-linecap='butt' title='Ayrshire and Arran&amp;lt;br/&amp;gt;Winter Year: 2020&amp;lt;br/&amp;gt;Items per Head: 19.38'/>\n <path id='svg_52553b2cf052ba37_e233' d='M 243.790599 174.282584 L 243.205309 172.784199 L 243.757396 171.360402 L 243.006274 171.342335 L 243.490068 170.755815 L 243.319438 170.278583 L 242.493154 170.113183 L 242.045455 170.590312 L 241.433485 170.525567 L 240.692720 168.686721 L 240.367867 168.495379 L 239.748412 168.780751 L 239.202374 168.101514 L 238.224862 168.856059 L 237.877060 168.714325 L 238.100457 167.678939 L 238.859782 166.877162 L 237.959975 166.512727 L 237.439061 167.238314 L 235.905340 167.407202 L 235.077210 166.669412 L 235.298598 165.419013 L 235.773368 164.802633 L 235.770703 163.776085 L 235.257909 162.652306 L 235.884484 162.550974 L 235.848327 161.806047 L 237.021961 160.427819 L 236.480293 160.106454 L 236.110220 158.954455 L 236.695529 158.134835 L 237.429628 157.841360 L 237.726795 158.557698 L 238.381033 158.494144 L 238.629123 158.977158 L 239.787890 158.395170 L 240.502506 160.492174 L 240.957586 160.231821 L 240.814951 159.887280 L 241.185025 159.376211 L 242.794771 158.048618 L 243.102459 158.641250 L 243.839839 157.944949 L 244.225089 158.096793 L 245.042657 157.498051 L 245.517427 157.871099 L 246.429231 157.461237 L 247.252542 157.879404 L 247.558117 157.495691 L 247.896710 157.644480 L 248.186801 156.946682 L 247.712237 156.431921 L 247.916090 155.991194 L 248.553082 155.986786 L 249.034518 156.619367 L 250.370454 155.206379 L 250.816637 155.545096 L 252.157353 155.524771 L 253.259660 155.888858 L 253.326148 156.462662 L 254.036149 156.886940 L 254.596747 158.299108 L 253.916195 158.723326 L 253.921548 159.431028 L 253.508838 159.961458 L 252.749430 160.414921 L 252.868401 160.707433 L 251.818575 161.934245 L 251.998106 162.188405 L 251.076704 162.047821 L 250.683865 162.385553 L 251.038250 162.462335 L 251.289519 163.572005 L 251.914697 164.137709 L 252.413564 165.973480 L 252.877486 166.131866 L 252.021792 167.041312 L 251.641505 166.937148 L 250.665223 167.497315 L 250.635998 168.433360 L 250.095827 168.841908 L 248.841942 168.707065 L 248.253003 169.426233 L 247.747922 169.540875 L 246.593422 170.850358 L 247.051209 171.149146 L 246.786076 171.681707 L 246.323776 171.725739 L 245.835266 172.824950 L 244.230934 173.603921 L 243.790599 174.282584 Z ' fill='#382C57' fill-opacity='1' fill-rule='evenodd' stroke='#FFFFFF' stroke-opacity='1' stroke-width='0.21' stroke-linejoin='round' stroke-linecap='butt' title='Borders&amp;lt;br/&amp;gt;Winter Year: 2020&amp;lt;br/&amp;gt;Items per Head: 18.09'/>\n <path id='svg_52553b2cf052ba37_e234' d='M 229.417812 166.010149 L 231.340988 166.370604 L 232.232900 167.980002 L 232.780126 168.260782 L 232.756172 169.175436 L 233.611987 169.935582 L 233.945248 169.829819 L 234.100087 169.153697 L 234.543991 169.098838 L 234.493132 167.871203 L 234.893865 167.494157 L 235.450565 167.203347 L 237.439061 167.238314 L 237.959975 166.512727 L 238.859782 166.877162 L 238.100457 167.678939 L 237.853947 168.688381 L 238.224862 168.856059 L 239.202374 168.101514 L 239.748412 168.780751 L 240.367867 168.495379 L 240.692720 168.686721 L 241.433485 170.525567 L 242.045455 170.590312 L 242.493154 170.113183 L 243.319438 170.278583 L 243.490068 170.755815 L 243.006274 171.342335 L 243.757396 171.360402 L 243.205309 172.784199 L 243.802637 174.269069 L 242.463068 175.613273 L 241.254446 175.515795 L 241.577207 175.893048 L 241.325631 176.755119 L 239.949468 177.786645 L 238.045106 177.496458 L 237.078086 177.759981 L 236.449838 178.407708 L 235.840432 178.525528 L 235.956718 178.265620 L 235.595355 178.372946 L 235.749008 177.875295 L 235.400817 178.598516 L 234.651292 178.845089 L 233.533645 180.122416 L 232.753197 179.882570 L 231.987413 180.117289 L 232.151583 179.782592 L 231.890027 179.755869 L 228.930183 181.734254 L 228.014286 181.684937 L 227.562141 180.985094 L 227.416808 181.765326 L 226.968064 181.342531 L 226.632234 181.463779 L 225.423077 180.114180 L 224.418546 179.801158 L 224.605643 180.101832 L 223.603686 179.189880 L 224.169094 180.892220 L 223.799738 182.208162 L 224.003058 182.903787 L 223.381087 183.650695 L 221.463668 182.625219 L 220.720769 181.368876 L 219.312420 180.181800 L 218.515274 180.003057 L 217.883164 179.426660 L 217.253351 179.537311 L 216.116795 180.543064 L 216.662196 182.831208 L 217.155833 183.280527 L 216.955794 184.245775 L 217.266066 184.337345 L 216.345443 184.157200 L 215.796720 183.644715 L 215.726869 183.075299 L 216.052460 182.848394 L 215.932753 182.187510 L 215.510013 182.032385 L 215.419913 181.157266 L 213.579597 179.072734 L 213.142337 177.774552 L 213.449514 175.870553 L 214.441736 175.526569 L 215.031318 176.646160 L 214.672759 176.800982 L 214.682539 177.399172 L 215.219388 178.103506 L 215.702515 177.668468 L 215.142215 176.010857 L 216.033613 175.731976 L 216.606413 174.548742 L 217.030015 174.568840 L 217.221973 175.156406 L 218.303894 175.074989 L 218.464475 175.386203 L 219.104234 175.040124 L 219.439855 175.277099 L 220.518596 175.001877 L 220.256397 173.425293 L 221.508948 172.602187 L 222.632810 172.759077 L 222.942896 172.350549 L 223.135716 173.119901 L 223.381674 172.996359 L 224.261792 170.415581 L 225.060082 169.252445 L 226.355044 169.108025 L 227.158093 169.901435 L 227.901727 168.401346 L 227.631139 167.987078 L 227.876913 167.011860 L 229.417812 166.010149 Z ' fill='#302445' fill-opacity='1' fill-rule='evenodd' stroke='#FFFFFF' stroke-opacity='1' stroke-width='0.21' stroke-linejoin='round' stroke-linecap='butt' title='Dumfries and Galloway&amp;lt;br/&amp;gt;Winter Year: 2020&amp;lt;br/&amp;gt;Items per Head: 18.83'/>\n <path id='svg_52553b2cf052ba37_e235' d='M 225.580586 141.297123 L 226.008392 142.671187 L 227.832204 141.925193 L 228.400492 142.443748 L 228.505804 142.972660 L 228.052362 142.988861 L 227.717972 143.412567 L 227.193572 143.103503 L 227.212439 144.728898 L 226.651536 144.763455 L 226.651228 146.024004 L 227.256943 146.614441 L 228.203305 147.191343 L 228.638902 146.984003 L 229.144475 147.474317 L 229.558295 147.353463 L 230.352420 148.447790 L 230.860415 148.322997 L 231.198660 148.780848 L 231.535511 148.527055 L 231.654255 149.223420 L 232.373587 148.748854 L 232.917674 149.406251 L 233.806817 149.437835 L 234.436795 149.065034 L 234.996038 149.314189 L 234.735192 149.817282 L 234.033824 150.104441 L 234.266594 150.759765 L 233.808971 150.936836 L 234.250168 151.233940 L 233.152168 151.343290 L 232.728013 152.095047 L 233.284879 152.831832 L 235.825233 153.665685 L 235.687377 153.926326 L 235.280243 154.104359 L 234.557712 153.835247 L 233.664550 154.987984 L 232.740810 155.247005 L 232.354308 155.814167 L 231.663298 156.080284 L 231.826934 155.868431 L 230.634452 155.080826 L 231.204340 154.610075 L 230.239358 154.513912 L 230.128859 154.050462 L 229.620947 154.028190 L 229.596605 153.456334 L 229.061888 153.396368 L 229.204770 152.982487 L 228.231195 152.966409 L 227.703514 153.435025 L 227.384096 152.875864 L 226.918082 153.321882 L 225.743218 152.898322 L 225.930685 154.312766 L 225.179257 154.450172 L 224.742939 153.928683 L 224.126130 154.114572 L 223.720371 153.351967 L 223.424947 153.382729 L 223.102554 152.335488 L 223.411451 152.034158 L 221.936753 151.664534 L 221.988394 150.848833 L 221.366209 150.563849 L 220.726615 148.760934 L 220.774132 147.064703 L 221.247465 146.929964 L 220.985574 146.538253 L 221.306736 146.000215 L 219.694119 145.895129 L 219.745841 145.437361 L 218.868080 144.791039 L 219.453699 143.740085 L 220.458712 143.400261 L 220.573457 142.825206 L 221.339447 142.844380 L 222.190668 142.020659 L 223.108296 141.887151 L 223.385161 141.476674 L 223.759952 141.725544 L 225.198924 140.998112 L 225.580586 141.297123 Z ' fill='#35274E' fill-opacity='1' fill-rule='evenodd' stroke='#FFFFFF' stroke-opacity='1' stroke-width='0.21' stroke-linejoin='round' stroke-linecap='butt' title='Forth Valley&amp;lt;br/&amp;gt;Winter Year: 2020&amp;lt;br/&amp;gt;Items per Head: 18.46'/>\n <path id='svg_52553b2cf052ba37_e236' d='M 238.596680 114.420277 L 239.413754 114.465395 L 240.647520 115.322955 L 242.439976 115.901374 L 244.652321 114.954768 L 244.925964 115.283762 L 245.342510 115.108970 L 245.957620 115.527527 L 246.291559 115.311203 L 248.002534 115.533309 L 248.768830 115.939724 L 250.774697 115.851703 L 251.393108 115.254948 L 252.674206 115.831604 L 253.579140 115.155115 L 254.977198 115.212825 L 255.189645 115.658165 L 255.748827 115.524122 L 256.516990 116.704463 L 257.248320 117.146439 L 257.421904 119.087129 L 257.919355 119.686140 L 257.596430 119.702525 L 257.551414 120.132915 L 257.838696 120.440684 L 256.780852 121.876172 L 256.762106 122.323111 L 255.340177 123.833043 L 254.508971 125.645372 L 254.115476 127.072879 L 254.475480 127.100812 L 254.798878 128.319258 L 254.533129 128.805225 L 254.115988 128.804385 L 252.474291 131.903307 L 252.569921 133.250361 L 252.116726 134.311486 L 251.103323 135.751874 L 249.648024 136.797522 L 249.226435 136.915399 L 248.378822 136.048939 L 247.301638 136.080932 L 246.634172 134.731643 L 246.761467 133.741108 L 246.448201 133.068022 L 245.481948 132.036961 L 244.740978 131.979025 L 244.637206 131.633664 L 243.901363 131.400687 L 243.126658 131.846950 L 242.227673 131.697546 L 241.513980 132.013992 L 241.019932 133.604829 L 238.993394 132.652521 L 238.976679 133.138366 L 237.898347 133.854313 L 237.156250 133.575400 L 236.701271 133.879436 L 235.811924 133.415843 L 235.518756 133.595374 L 235.263222 132.517678 L 234.112699 132.458102 L 233.667668 132.877908 L 233.299541 132.411137 L 232.762016 132.637858 L 232.568314 132.405189 L 233.240170 131.050608 L 233.152291 130.027648 L 233.473761 129.603125 L 233.270112 129.151632 L 233.704787 129.100874 L 234.473442 128.276744 L 234.931499 128.373337 L 235.972750 127.138834 L 237.016794 126.941852 L 237.319293 125.887925 L 236.904181 125.524105 L 237.105082 124.567756 L 236.565095 124.009660 L 237.940903 122.121350 L 237.622612 121.319163 L 236.912714 121.080856 L 236.533820 120.450017 L 234.583204 121.147466 L 234.086038 120.950728 L 234.253408 119.036289 L 233.872178 118.834487 L 234.017583 117.957999 L 233.416952 116.404425 L 235.021510 115.650352 L 236.288273 115.783450 L 236.714396 115.388950 L 236.708204 114.875770 L 238.596680 114.420277 Z ' fill='#3A6DA0' fill-opacity='1' fill-rule='evenodd' stroke='#FFFFFF' stroke-opacity='1' stroke-width='0.21' stroke-linejoin='round' stroke-linecap='butt' title='Grampian&amp;lt;br/&amp;gt;Winter Year: 2020&amp;lt;br/&amp;gt;Items per Head: 14.12'/>\n <path id='svg_52553b2cf052ba37_e237' d='M 216.325990 108.625097 L 216.265563 108.401838 L 214.872735 107.842266 L 214.305020 106.684217 L 213.607550 106.536824 L 213.717946 106.098908 L 213.195352 105.510602 L 213.639358 104.855831 L 214.404917 105.781068 L 214.661088 105.486977 L 215.088175 105.885866 L 215.531260 105.046662 L 215.125808 104.629417 L 215.620368 104.622034 L 215.185897 104.239143 L 215.907691 104.035844 L 215.085099 103.820875 L 215.471068 103.567595 L 215.067196 103.671553 L 215.175028 103.350616 L 214.034453 101.939330 L 214.413859 101.274652 L 215.190718 102.208709 L 215.996391 101.697740 L 215.555973 101.493068 L 215.781646 101.254307 L 216.008696 101.707381 L 216.745460 101.678464 L 216.989407 102.129237 L 216.939777 101.526905 L 217.449514 101.753831 L 217.322465 101.370940 L 217.625476 101.309517 L 218.228012 101.877189 L 218.832089 101.711994 L 219.654803 102.673981 L 218.977083 101.812280 L 219.848279 101.722762 L 218.241447 101.627704 L 217.624245 101.034295 L 217.331487 101.120942 L 217.423981 100.150176 L 217.025708 100.177555 L 216.759303 99.422846 L 217.157105 99.392697 L 216.916807 99.175206 L 217.371273 98.040476 L 218.810144 98.925454 L 218.215811 98.312521 L 218.690683 98.162706 L 217.940588 98.198391 L 217.712432 97.997716 L 218.218066 98.014328 L 217.686181 97.688962 L 218.227091 97.177686 L 218.718437 97.281972 L 218.184638 97.058841 L 218.462649 96.923978 L 217.648446 96.288237 L 217.954021 95.402377 L 218.636746 95.035685 L 219.062603 94.345578 L 219.215083 93.247558 L 219.806033 93.624399 L 220.760925 93.553153 L 221.373387 94.018571 L 221.393998 94.796763 L 221.762535 95.203958 L 221.262684 95.699769 L 221.697011 95.338596 L 221.416968 95.972141 L 221.849491 95.161956 L 221.427940 94.712371 L 222.001766 94.387621 L 221.748590 93.931615 L 222.047602 93.839327 L 222.392882 94.695165 L 223.361679 95.131461 L 222.071084 97.363124 L 223.166233 96.684151 L 223.470783 95.829259 L 223.757490 95.770503 L 223.710423 96.094781 L 224.246822 94.506980 L 225.212357 94.608497 L 225.717685 95.297825 L 225.946148 95.108080 L 226.116368 95.833874 L 226.514846 95.468107 L 226.287101 96.249272 L 226.084835 96.340725 L 226.107590 96.515881 L 226.881844 95.591669 L 227.535345 95.441855 L 228.153263 95.864636 L 228.278877 95.612075 L 228.586155 95.743554 L 228.595836 95.314292 L 229.046609 95.564803 L 229.660119 94.931914 L 230.297110 95.305679 L 230.963120 94.238627 L 231.110309 95.116080 L 231.951175 94.905334 L 232.197809 95.234905 L 233.789980 95.130948 L 235.335822 93.855858 L 236.734085 93.899418 L 236.553118 94.226813 L 236.843969 94.472382 L 237.636577 94.154870 L 238.690751 94.567459 L 238.913719 94.101426 L 238.194038 93.526637 L 238.643583 92.814112 L 239.437750 93.483938 L 240.880065 93.125431 L 241.200243 93.632830 L 242.834415 93.552722 L 242.590753 94.623529 L 242.238439 94.722975 L 242.303041 95.352768 L 241.532848 96.349045 L 241.638507 97.265813 L 242.498978 97.456355 L 241.733379 99.753995 L 240.344345 101.241901 L 238.289177 102.114984 L 236.827912 104.212892 L 234.350659 106.219476 L 233.196015 106.774660 L 232.689867 107.954487 L 230.984675 108.690637 L 230.547640 110.761350 L 230.608018 111.173857 L 230.673029 110.924270 L 231.173743 111.147298 L 229.317341 111.406483 L 228.109766 110.800789 L 227.241829 111.078863 L 226.601310 110.589490 L 227.150463 111.117069 L 228.387345 111.033046 L 228.801698 111.684393 L 229.011970 111.464891 L 230.296085 111.764909 L 230.091821 111.918825 L 231.398001 111.285627 L 232.366512 111.960868 L 232.957256 111.235176 L 233.470397 111.096253 L 230.895443 114.960222 L 230.141779 114.944062 L 230.075517 114.417571 L 229.784707 114.329178 L 228.599916 115.091231 L 227.218674 115.203247 L 225.562047 117.098778 L 227.928860 115.321089 L 228.653873 115.286204 L 229.130674 115.649181 L 230.116246 115.173756 L 230.645241 115.347523 L 229.282538 116.906040 L 229.387296 117.671968 L 228.442575 117.804533 L 227.567175 119.293813 L 225.580566 119.252365 L 226.687118 119.358661 L 225.850682 119.575270 L 226.957787 119.645901 L 227.721827 119.322115 L 228.280394 119.508762 L 229.871376 118.064725 L 229.550153 117.475414 L 230.168400 117.017195 L 232.097789 117.373898 L 233.413362 116.434264 L 234.017583 117.957999 L 233.872178 118.834487 L 234.253408 119.036289 L 234.086038 120.950728 L 234.583204 121.147466 L 236.532692 120.449710 L 236.791714 120.982927 L 237.726281 121.470105 L 237.863688 122.450920 L 236.539358 124.179778 L 237.105082 124.567756 L 236.904181 125.524105 L 237.319293 125.887925 L 237.205676 126.547824 L 237.014230 126.943800 L 235.938871 127.164840 L 234.889455 128.402564 L 234.473442 128.276744 L 233.704787 129.100874 L 233.270112 129.151632 L 233.473761 129.603125 L 233.152291 130.027648 L 233.240170 131.050608 L 232.540218 132.339562 L 231.370520 132.607709 L 230.687898 132.032038 L 230.443438 133.117755 L 229.747792 133.337911 L 229.608233 133.042857 L 228.645568 133.168000 L 227.870555 132.755883 L 227.529294 133.687682 L 226.207835 134.079291 L 225.854476 134.694851 L 225.313566 134.485973 L 224.420528 135.789283 L 223.461246 135.036622 L 223.104297 135.775030 L 222.553749 136.039689 L 222.469254 137.560696 L 221.629846 137.949945 L 220.878212 137.878269 L 220.873804 138.661074 L 221.516332 138.744134 L 221.961262 138.413539 L 221.863847 139.137075 L 222.769395 140.325230 L 222.274118 140.216124 L 221.034794 140.751189 L 221.555195 141.500055 L 221.105446 142.138994 L 221.687782 142.493173 L 221.339447 142.844380 L 220.569869 142.827666 L 220.458712 143.400261 L 219.453699 143.740085 L 218.867465 144.794422 L 219.745841 145.437361 L 219.694119 145.895129 L 221.306736 146.000215 L 220.985574 146.538253 L 221.247465 146.929964 L 220.774132 147.064703 L 220.726101 148.752505 L 221.366209 150.563849 L 222.002422 150.911671 L 221.531302 152.315677 L 221.768769 152.912081 L 221.007620 153.282443 L 221.552528 153.654979 L 221.511389 154.794897 L 220.779054 154.745861 L 220.619088 154.426198 L 221.160531 154.435488 L 220.430124 154.068203 L 220.218764 153.346204 L 219.343353 152.980949 L 218.879883 151.469180 L 218.915363 152.474617 L 219.643011 153.555144 L 218.707528 153.635707 L 218.367591 152.932420 L 218.244208 151.904906 L 220.006254 148.648937 L 218.520276 150.964597 L 218.206126 150.739079 L 218.074733 149.364137 L 217.880867 149.458445 L 217.932138 150.659459 L 218.349562 151.266502 L 217.838743 152.084773 L 217.964720 153.592596 L 217.250984 153.432038 L 217.808185 153.982949 L 216.794044 156.347787 L 215.948524 156.085349 L 215.728345 154.231060 L 215.051875 152.958718 L 215.574430 155.451413 L 214.302088 154.596315 L 214.230308 153.959426 L 213.461653 155.444153 L 213.906583 156.959089 L 212.499296 156.350092 L 212.538190 155.826644 L 212.031089 155.285295 L 212.382808 153.953274 L 212.167572 152.720411 L 212.639984 152.710361 L 214.195610 150.117067 L 215.527547 149.532167 L 216.090216 148.390983 L 217.853049 147.105370 L 216.383897 147.804134 L 216.208634 147.529291 L 215.331815 149.206294 L 213.775657 150.101097 L 212.913566 151.527744 L 212.435972 151.475353 L 212.266628 152.458518 L 211.544732 152.985995 L 210.978243 152.428266 L 210.876158 153.549976 L 211.457879 155.880449 L 211.197627 156.032498 L 211.581750 156.075484 L 212.123890 156.901563 L 212.370811 158.108688 L 211.329906 158.635549 L 210.586579 159.564272 L 210.081867 161.019857 L 210.319689 162.578215 L 209.863555 162.666990 L 209.854224 163.605865 L 208.963749 165.738022 L 208.258661 165.898126 L 208.563794 166.183218 L 209.104334 165.871121 L 208.902531 166.092920 L 209.284808 167.438477 L 208.113593 168.604892 L 207.046725 168.529811 L 206.023560 168.907186 L 205.510645 168.508708 L 205.578220 167.154435 L 205.783202 166.444229 L 206.814002 165.414938 L 206.968588 162.437706 L 207.602400 161.133268 L 207.615526 159.991873 L 208.403561 159.373236 L 209.070905 158.123556 L 210.273724 157.334086 L 210.859752 156.199764 L 208.751794 158.301159 L 208.489799 158.230303 L 208.640681 157.469303 L 208.221344 157.638635 L 207.911462 157.343929 L 207.990830 156.240679 L 209.119510 154.427223 L 208.785838 154.413585 L 207.837734 155.344257 L 207.748112 154.606672 L 209.405910 152.315677 L 209.029683 152.448059 L 209.459982 151.881340 L 208.899557 152.248102 L 209.339052 151.616648 L 208.699325 152.225674 L 208.846748 152.417296 L 208.341216 153.158778 L 208.538404 152.483128 L 208.295072 152.816390 L 207.697457 154.307351 L 207.508882 154.191684 L 207.852500 153.606476 L 207.451869 153.890928 L 208.632435 151.574401 L 209.296087 150.706690 L 209.835869 150.686489 L 209.521577 150.223409 L 210.428664 148.619754 L 210.153349 148.569845 L 209.063009 149.836313 L 209.098386 149.193784 L 209.928710 147.871008 L 209.695993 147.407483 L 210.727797 147.016084 L 210.517365 146.711206 L 209.300599 147.086135 L 209.660522 145.220382 L 210.051002 144.865894 L 210.400720 145.087028 L 211.327619 144.650423 L 210.721526 144.618579 L 210.408753 144.978859 L 210.195791 144.638149 L 210.540538 143.831167 L 211.082327 143.467332 L 210.978544 142.918561 L 211.538272 142.508951 L 213.737081 142.561262 L 214.112633 143.061696 L 215.639753 141.943187 L 216.385968 140.274636 L 214.796893 142.537143 L 214.191650 142.844851 L 213.875903 142.437308 L 212.761004 142.209400 L 211.880455 142.451028 L 211.820283 141.639081 L 211.325087 142.077673 L 211.423855 141.781881 L 211.133026 141.927141 L 211.963062 140.695898 L 212.350774 141.288633 L 214.301821 140.169079 L 213.169448 140.483186 L 212.552085 141.008939 L 212.217059 140.547316 L 211.927522 140.637470 L 212.706512 139.182603 L 213.520574 138.459518 L 213.326194 138.059870 L 214.543124 137.366338 L 215.486367 137.635674 L 217.751335 136.880924 L 215.297155 137.449355 L 215.023532 137.099523 L 214.218086 137.021982 L 216.098932 134.042438 L 215.107658 133.557680 L 213.412227 133.393182 L 215.995057 134.095492 L 214.513427 135.729295 L 214.177233 136.327341 L 214.332932 136.601928 L 213.787122 137.046858 L 213.496004 136.837877 L 211.361490 138.862673 L 210.742956 138.789047 L 211.073203 139.042881 L 210.309900 140.210322 L 208.502719 141.403254 L 207.454227 140.534108 L 207.754059 139.894718 L 207.305438 140.538373 L 205.797147 140.017399 L 204.685387 138.403488 L 204.673082 137.699128 L 205.700655 137.697385 L 205.886873 137.592484 L 205.363394 137.538753 L 205.668457 137.302496 L 206.804110 138.420307 L 206.297860 137.609507 L 207.983345 136.689806 L 209.047217 137.327925 L 210.503828 137.147759 L 208.997075 137.245072 L 208.354238 136.529021 L 207.620858 136.369855 L 206.785345 137.302393 L 205.439686 136.900326 L 205.087454 137.209080 L 203.948868 136.644401 L 202.470786 136.707854 L 201.981865 136.136387 L 201.996426 135.744778 L 202.548922 135.573738 L 202.468223 135.189924 L 203.065223 135.022266 L 205.117088 134.992735 L 205.359498 134.643785 L 205.949217 135.404135 L 206.494023 135.352864 L 206.329239 134.690749 L 207.520572 134.590052 L 206.328623 134.569646 L 206.474745 134.098262 L 207.055749 134.368254 L 206.600155 134.135177 L 206.778372 133.617030 L 208.506821 133.472857 L 209.082533 132.884860 L 208.931264 132.677663 L 208.425915 133.341091 L 207.652297 133.055757 L 208.476366 132.520548 L 208.345625 132.278139 L 206.443162 132.667800 L 205.999259 132.274858 L 206.405735 131.933392 L 206.928596 132.106793 L 206.316831 131.598594 L 206.879929 131.151325 L 207.452915 129.556121 L 208.622735 129.483950 L 208.827368 130.118091 L 209.706358 130.645978 L 211.136718 130.163250 L 209.884884 130.398646 L 209.396887 130.066513 L 209.183599 129.083402 L 208.473106 129.258112 L 208.206169 128.785147 L 207.977910 128.871590 L 207.804305 128.365749 L 208.807269 127.207333 L 209.773584 127.037031 L 210.427125 127.273062 L 211.275949 128.184086 L 211.331138 127.795924 L 212.899824 127.636677 L 211.197935 127.715224 L 210.799641 126.969352 L 209.605047 126.699545 L 209.153553 126.127975 L 210.096469 125.124580 L 209.812653 124.513000 L 210.519743 124.065239 L 211.374923 123.842415 L 212.436540 125.158338 L 212.833912 124.959344 L 211.536324 123.788479 L 212.248211 122.933605 L 211.441677 123.806833 L 208.864509 123.452838 L 209.077570 122.709018 L 209.583758 122.499074 L 209.526828 122.143375 L 211.405992 121.975328 L 212.491133 120.777617 L 211.212823 121.853734 L 210.183178 121.608536 L 210.618961 121.136760 L 210.461294 120.775915 L 208.806633 121.896453 L 208.274891 121.967105 L 208.060764 121.327469 L 207.862653 121.567726 L 208.025283 119.972171 L 207.586527 119.730909 L 207.390240 119.003969 L 207.987036 116.588899 L 208.305942 116.479382 L 209.090182 117.485731 L 209.520859 117.597706 L 209.520758 117.227940 L 209.609968 117.777361 L 210.187076 118.307914 L 210.158056 117.506650 L 210.547920 118.087243 L 210.542690 117.832015 L 211.623545 117.922622 L 211.789684 117.617968 L 210.977572 117.301503 L 209.998091 117.499267 L 209.030197 115.670223 L 208.277846 115.266618 L 208.706471 113.954511 L 209.353511 113.737717 L 209.979920 114.195096 L 210.137650 113.941979 L 209.883489 113.300006 L 208.492978 112.740701 L 208.618695 110.261437 L 210.062589 110.029180 L 210.345830 111.721800 L 211.070721 112.531595 L 210.867750 111.958303 L 211.386304 111.950715 L 211.178759 111.695899 L 211.406650 110.932657 L 210.693121 110.456063 L 210.562995 109.662490 L 211.076115 108.890245 L 211.762592 109.077671 L 212.008613 110.230490 L 212.820253 110.607825 L 213.441966 109.359991 L 214.746813 110.532251 L 215.691266 110.891804 L 214.435824 109.472171 L 213.790341 109.304270 L 213.684990 108.866764 L 214.175448 108.706592 L 214.584570 109.301789 L 215.669383 109.277444 L 216.991418 110.317466 L 217.622502 111.437514 L 217.276750 110.399665 L 215.866286 109.114176 L 216.325990 108.625097 Z M 225.745919 96.493964 L 225.670002 96.528289 L 225.752638 96.939483 L 225.755112 96.934457 L 226.041615 96.997213 L 225.738808 96.498552 L 225.745919 96.493964 Z M 218.759367 97.299082 L 219.186412 97.882152 L 219.218384 97.490953 L 218.759367 97.299082 Z ' fill='#3A639D' fill-opacity='1' fill-rule='evenodd' stroke='#FFFFFF' stroke-opacity='1' stroke-width='0.21' stroke-linejoin='round' stroke-linecap='butt' title='Highland&amp;lt;br/&amp;gt;Winter Year: 2020&amp;lt;br/&amp;gt;Items per Head: 14.73'/>\n <path id='svg_52553b2cf052ba37_e238' d='M 241.754155 92.306857 L 241.877327 92.903837 L 241.502720 93.069463 L 241.754155 92.306857 Z ' fill='#3A639D' fill-opacity='1' fill-rule='evenodd' stroke='#FFFFFF' stroke-opacity='1' stroke-width='0.21' stroke-linejoin='round' stroke-linecap='butt' title='Highland&amp;lt;br/&amp;gt;Winter Year: 2020&amp;lt;br/&amp;gt;Items per Head: 14.73'/>\n <path id='svg_52553b2cf052ba37_e239' d='M 226.895278 94.986055 L 227.245664 95.036918 L 227.120664 95.329878 L 226.895278 94.986055 Z ' fill='#3A639D' fill-opacity='1' fill-rule='evenodd' stroke='#FFFFFF' stroke-opacity='1' stroke-width='0.21' stroke-linejoin='round' stroke-linecap='butt' title='Highland&amp;lt;br/&amp;gt;Winter Year: 2020&amp;lt;br/&amp;gt;Items per Head: 14.73'/>\n <path id='svg_52553b2cf052ba37_e240' d='M 216.909629 98.531037 L 216.989202 98.913827 L 216.665682 98.949307 L 216.541811 98.690182 L 216.909629 98.531037 Z ' fill='#3A639D' fill-opacity='1' fill-rule='evenodd' stroke='#FFFFFF' stroke-opacity='1' stroke-width='0.21' stroke-linejoin='round' stroke-linecap='butt' title='Highland&amp;lt;br/&amp;gt;Winter Year: 2020&amp;lt;br/&amp;gt;Items per Head: 14.73'/>\n <path id='svg_52553b2cf052ba37_e241' d='M 214.235538 154.770022 L 215.537719 155.817181 L 215.395556 156.231451 L 215.730847 156.331266 L 215.762102 156.810301 L 216.188472 156.723774 L 216.426410 158.419739 L 216.090934 158.743422 L 216.346469 159.332795 L 216.018334 159.510150 L 215.568379 158.590430 L 215.168158 158.186108 L 214.879727 158.292811 L 214.780446 156.648694 L 213.804657 155.649833 L 213.711855 155.288473 L 214.235538 154.770022 Z ' fill='#3A639D' fill-opacity='1' fill-rule='evenodd' stroke='#FFFFFF' stroke-opacity='1' stroke-width='0.21' stroke-linejoin='round' stroke-linecap='butt' title='Highland&amp;lt;br/&amp;gt;Winter Year: 2020&amp;lt;br/&amp;gt;Items per Head: 14.73'/>\n <path id='svg_52553b2cf052ba37_e242' d='M 213.732672 106.753372 L 214.029326 107.128163 L 213.847006 107.304638 L 213.560299 107.166308 L 213.732672 106.753372 Z ' fill='#3A639D' fill-opacity='1' fill-rule='evenodd' stroke='#FFFFFF' stroke-opacity='1' stroke-width='0.21' stroke-linejoin='round' stroke-linecap='butt' title='Highland&amp;lt;br/&amp;gt;Winter Year: 2020&amp;lt;br/&amp;gt;Items per Head: 14.73'/>\n <path id='svg_52553b2cf052ba37_e243' d='M 212.452742 107.960701 L 212.589534 108.208854 L 212.312772 108.266380 L 212.452742 107.960701 Z ' fill='#3A639D' fill-opacity='1' fill-rule='evenodd' stroke='#FFFFFF' stroke-opacity='1' stroke-width='0.21' stroke-linejoin='round' stroke-linecap='butt' title='Highland&amp;lt;br/&amp;gt;Winter Year: 2020&amp;lt;br/&amp;gt;Items per Head: 14.73'/>\n <path id='svg_52553b2cf052ba37_e244' d='M 211.838515 140.116558 L 210.752185 141.504565 L 209.549468 142.291986 L 209.926106 141.546403 L 209.641757 141.592033 L 210.437810 141.258383 L 211.285711 140.147217 L 211.838515 140.116558 Z ' fill='#3A639D' fill-opacity='1' fill-rule='evenodd' stroke='#FFFFFF' stroke-opacity='1' stroke-width='0.21' stroke-linejoin='round' stroke-linecap='butt' title='Highland&amp;lt;br/&amp;gt;Winter Year: 2020&amp;lt;br/&amp;gt;Items per Head: 14.73'/>\n <path id='svg_52553b2cf052ba37_e245' d='M 210.798677 110.626015 L 211.144817 111.257223 L 210.711680 110.956776 L 210.798677 110.626015 Z ' fill='#3A639D' fill-opacity='1' fill-rule='evenodd' stroke='#FFFFFF' stroke-opacity='1' stroke-width='0.21' stroke-linejoin='round' stroke-linecap='butt' title='Highland&amp;lt;br/&amp;gt;Winter Year: 2020&amp;lt;br/&amp;gt;Items per Head: 14.73'/>\n <path id='svg_52553b2cf052ba37_e246' d='M 210.783049 143.170055 L 210.044234 144.329600 L 209.573873 144.131386 L 209.935540 143.509468 L 210.783049 143.170055 Z ' fill='#3A639D' fill-opacity='1' fill-rule='evenodd' stroke='#FFFFFF' stroke-opacity='1' stroke-width='0.21' stroke-linejoin='round' stroke-linecap='butt' title='Highland&amp;lt;br/&amp;gt;Winter Year: 2020&amp;lt;br/&amp;gt;Items per Head: 14.73'/>\n <path id='svg_52553b2cf052ba37_e247' d='M 201.850920 113.295965 L 202.534977 113.350231 L 202.447098 113.707240 L 203.059993 114.164393 L 203.187800 114.961679 L 203.709596 115.100193 L 204.318778 116.201720 L 203.995380 119.792312 L 203.292660 120.232504 L 204.205387 120.600856 L 203.915255 121.145314 L 204.462234 122.267451 L 203.711319 122.775588 L 204.179157 122.463246 L 204.928718 122.510086 L 205.102631 122.995110 L 204.653700 123.515100 L 205.333042 123.125236 L 206.517301 123.761202 L 206.803597 124.297026 L 208.618900 123.620719 L 209.144531 123.719365 L 208.896070 123.954904 L 209.914724 124.135480 L 209.575412 125.192895 L 208.351470 126.012923 L 207.909576 125.877300 L 207.869871 126.469871 L 208.127518 126.584903 L 207.794872 127.089819 L 207.171642 127.350646 L 206.206803 128.794970 L 205.216144 129.260326 L 204.781981 128.594213 L 205.310236 128.026684 L 205.371598 126.900527 L 207.331688 125.595803 L 205.506748 125.914236 L 205.083885 124.597534 L 205.105439 125.470967 L 204.345254 126.808239 L 203.981743 126.491179 L 204.088079 125.381161 L 203.428734 125.058462 L 203.310707 125.607163 L 201.420344 125.817991 L 201.948231 124.987810 L 200.967313 125.051899 L 200.737313 124.282422 L 201.145020 124.235049 L 201.256380 123.849285 L 200.513669 124.124507 L 199.630986 122.663283 L 199.662774 122.240297 L 200.337296 121.948648 L 200.350113 121.627507 L 201.520221 122.663593 L 200.691086 121.651911 L 200.716188 121.277161 L 199.838838 121.805520 L 200.071015 121.204726 L 199.749217 120.954421 L 199.793043 120.317634 L 199.689969 120.113310 L 199.222355 120.894434 L 199.229493 120.115135 L 198.669859 120.406168 L 198.714466 121.549985 L 198.461699 121.679085 L 196.856403 120.699090 L 196.609072 119.600353 L 196.346872 119.331589 L 196.054729 119.480071 L 196.211824 118.644867 L 196.947747 118.880240 L 196.636861 118.087550 L 197.099121 117.428615 L 197.936355 119.100788 L 198.392053 119.060921 L 198.591148 119.403596 L 197.936786 117.740444 L 198.543631 117.616472 L 198.870862 117.980865 L 198.998568 117.708329 L 198.073290 116.633401 L 197.904794 116.779441 L 198.243388 115.329989 L 198.864483 115.821884 L 199.013826 116.755201 L 199.735682 117.143753 L 200.205940 117.964808 L 200.659175 117.566329 L 200.461372 118.460270 L 201.011920 117.350068 L 201.982542 119.096195 L 201.832728 118.467407 L 202.082827 118.462218 L 201.401580 117.670922 L 201.070164 116.587359 L 201.570732 116.046163 L 201.143789 116.066959 L 200.836471 114.740680 L 201.771038 114.133939 L 201.850920 113.295965 Z ' fill='#3A639D' fill-opacity='1' fill-rule='evenodd' stroke='#FFFFFF' stroke-opacity='1' stroke-width='0.21' stroke-linejoin='round' stroke-linecap='butt' title='Highland&amp;lt;br/&amp;gt;Winter Year: 2020&amp;lt;br/&amp;gt;Items per Head: 14.73'/>\n <path id='svg_52553b2cf052ba37_e248' d='M 209.575309 145.289804 L 208.986513 146.737698 L 208.649519 145.975911 L 209.575309 145.289804 Z ' fill='#3A639D' fill-opacity='1' fill-rule='evenodd' stroke='#FFFFFF' stroke-opacity='1' stroke-width='0.21' stroke-linejoin='round' stroke-linecap='butt' title='Highland&amp;lt;br/&amp;gt;Winter Year: 2020&amp;lt;br/&amp;gt;Items per Head: 14.73'/>\n <path id='svg_52553b2cf052ba37_e249' d='M 209.150478 147.539167 L 209.384683 148.075562 L 209.074186 148.341353 L 209.150478 147.539167 Z ' fill='#3A639D' fill-opacity='1' fill-rule='evenodd' stroke='#FFFFFF' stroke-opacity='1' stroke-width='0.21' stroke-linejoin='round' stroke-linecap='butt' title='Highland&amp;lt;br/&amp;gt;Winter Year: 2020&amp;lt;br/&amp;gt;Items per Head: 14.73'/>\n <path id='svg_52553b2cf052ba37_e250' d='M 208.817729 146.603367 L 209.061573 147.148337 L 208.738668 148.546949 L 208.409508 147.752863 L 208.817729 146.603367 Z ' fill='#3A639D' fill-opacity='1' fill-rule='evenodd' stroke='#FFFFFF' stroke-opacity='1' stroke-width='0.21' stroke-linejoin='round' stroke-linecap='butt' title='Highland&amp;lt;br/&amp;gt;Winter Year: 2020&amp;lt;br/&amp;gt;Items per Head: 14.73'/>\n <path id='svg_52553b2cf052ba37_e251' d='M 203.146743 137.454155 L 203.891608 137.897752 L 203.852150 138.335422 L 204.784544 139.308731 L 205.144119 140.656482 L 207.151831 140.923972 L 207.500575 141.532457 L 207.996366 141.578090 L 208.606676 142.432223 L 208.881694 142.356526 L 208.827572 143.133960 L 208.482355 142.785603 L 208.821830 143.289740 L 208.438016 144.005053 L 207.957605 143.809711 L 208.081271 143.279302 L 207.661055 143.348375 L 207.797231 143.681759 L 207.001565 144.324862 L 208.072249 143.964756 L 208.223497 144.283558 L 206.403273 145.554465 L 205.701886 145.263963 L 206.239636 144.782733 L 205.936933 144.512698 L 205.157080 145.247967 L 204.458051 145.190031 L 203.717389 145.810511 L 203.280970 145.570256 L 202.442894 145.934999 L 201.682853 145.728889 L 201.082325 145.812543 L 200.867848 146.292253 L 200.787557 146.070662 L 200.301714 146.205195 L 199.774750 145.583382 L 199.364889 145.659775 L 199.841280 144.335526 L 200.601342 144.443625 L 200.886101 144.630766 L 200.709298 144.914663 L 201.234702 145.065625 L 201.178940 144.502671 L 201.893269 144.785973 L 202.991803 144.608863 L 204.130900 144.140594 L 204.393408 143.655981 L 201.873683 144.190962 L 201.756478 143.565866 L 202.498779 142.983531 L 202.604295 142.412473 L 203.785170 142.159708 L 204.526549 141.282459 L 202.860855 141.657969 L 202.643056 141.001700 L 201.678013 140.284418 L 200.944242 140.375374 L 200.287153 140.027242 L 200.349089 139.640556 L 201.080602 139.110762 L 200.672608 139.142101 L 200.602777 138.441840 L 201.265629 138.548771 L 201.445263 138.294384 L 202.266009 139.017408 L 201.841690 138.532999 L 201.841075 137.873756 L 202.255960 138.147278 L 202.238630 137.696565 L 203.146743 137.454155 Z ' fill='#3A639D' fill-opacity='1' fill-rule='evenodd' stroke='#FFFFFF' stroke-opacity='1' stroke-width='0.21' stroke-linejoin='round' stroke-linecap='butt' title='Highland&amp;lt;br/&amp;gt;Winter Year: 2020&amp;lt;br/&amp;gt;Items per Head: 14.73'/>\n <path id='svg_52553b2cf052ba37_e252' d='M 208.387154 113.035919 L 208.777634 113.057145 L 208.607006 113.281916 L 208.387154 113.035919 Z ' fill='#3A639D' fill-opacity='1' fill-rule='evenodd' stroke='#FFFFFF' stroke-opacity='1' stroke-width='0.21' stroke-linejoin='round' stroke-linecap='butt' title='Highland&amp;lt;br/&amp;gt;Winter Year: 2020&amp;lt;br/&amp;gt;Items per Head: 14.73'/>\n <path id='svg_52553b2cf052ba37_e253' d='M 208.078216 148.156059 L 208.269026 148.917434 L 207.341841 149.038639 L 207.369526 148.620368 L 208.078216 148.156059 Z ' fill='#3A639D' fill-opacity='1' fill-rule='evenodd' stroke='#FFFFFF' stroke-opacity='1' stroke-width='0.21' stroke-linejoin='round' stroke-linecap='butt' title='Highland&amp;lt;br/&amp;gt;Winter Year: 2020&amp;lt;br/&amp;gt;Items per Head: 14.73'/>\n <path id='svg_52553b2cf052ba37_e254' d='M 208.119109 147.335927 L 207.984266 148.128783 L 207.771799 147.895806 L 208.119109 147.335927 Z ' fill='#3A639D' fill-opacity='1' fill-rule='evenodd' stroke='#FFFFFF' stroke-opacity='1' stroke-width='0.21' stroke-linejoin='round' stroke-linecap='butt' title='Highland&amp;lt;br/&amp;gt;Winter Year: 2020&amp;lt;br/&amp;gt;Items per Head: 14.73'/>\n <path id='svg_52553b2cf052ba37_e255' d='M 207.778363 149.308960 L 208.003749 150.199415 L 205.941178 153.307977 L 205.358370 155.124406 L 205.164258 155.360253 L 205.066228 155.112615 L 204.948100 155.633630 L 204.512296 155.609738 L 204.061501 157.285091 L 203.138335 157.156278 L 202.528312 156.302513 L 202.640390 154.691372 L 203.454575 153.690151 L 204.888420 153.551207 L 205.651436 153.131091 L 204.585880 153.468147 L 203.749997 153.126784 L 204.515167 151.727393 L 207.778363 149.308960 Z ' fill='#3A639D' fill-opacity='1' fill-rule='evenodd' stroke='#FFFFFF' stroke-opacity='1' stroke-width='0.21' stroke-linejoin='round' stroke-linecap='butt' title='Highland&amp;lt;br/&amp;gt;Winter Year: 2020&amp;lt;br/&amp;gt;Items per Head: 14.73'/>\n <path id='svg_52553b2cf052ba37_e256' d='M 207.474121 121.665857 L 207.853424 122.210150 L 207.559538 122.181131 L 207.474121 121.665857 Z ' fill='#3A639D' fill-opacity='1' fill-rule='evenodd' stroke='#FFFFFF' stroke-opacity='1' stroke-width='0.21' stroke-linejoin='round' stroke-linecap='butt' title='Highland&amp;lt;br/&amp;gt;Winter Year: 2020&amp;lt;br/&amp;gt;Items per Head: 14.73'/>\n <path id='svg_52553b2cf052ba37_e257' d='M 207.253348 123.310120 L 207.482016 123.603185 L 207.205870 123.757100 L 207.253348 123.310120 Z ' fill='#3A639D' fill-opacity='1' fill-rule='evenodd' stroke='#FFFFFF' stroke-opacity='1' stroke-width='0.21' stroke-linejoin='round' stroke-linecap='butt' title='Highland&amp;lt;br/&amp;gt;Winter Year: 2020&amp;lt;br/&amp;gt;Items per Head: 14.73'/>\n <path id='svg_52553b2cf052ba37_e258' d='M 207.082511 158.877548 L 207.095146 159.900734 L 206.453930 160.767604 L 206.354669 160.051757 L 207.082511 158.877548 Z ' fill='#3A639D' fill-opacity='1' fill-rule='evenodd' stroke='#FFFFFF' stroke-opacity='1' stroke-width='0.21' stroke-linejoin='round' stroke-linecap='butt' title='Highland&amp;lt;br/&amp;gt;Winter Year: 2020&amp;lt;br/&amp;gt;Items per Head: 14.73'/>\n <path id='svg_52553b2cf052ba37_e259' d='M 206.378663 116.411808 L 206.553191 116.776140 L 206.167631 118.072067 L 205.899791 117.323406 L 206.184921 117.257554 L 206.091648 116.701181 L 206.378663 116.411808 Z ' fill='#3A639D' fill-opacity='1' fill-rule='evenodd' stroke='#FFFFFF' stroke-opacity='1' stroke-width='0.21' stroke-linejoin='round' stroke-linecap='butt' title='Highland&amp;lt;br/&amp;gt;Winter Year: 2020&amp;lt;br/&amp;gt;Items per Head: 14.73'/>\n <path id='svg_52553b2cf052ba37_e260' d='M 205.703731 122.287262 L 206.546217 122.761929 L 206.269148 123.502899 L 205.481421 123.138977 L 205.325147 122.684202 L 205.703731 122.287262 Z ' fill='#3A639D' fill-opacity='1' fill-rule='evenodd' stroke='#FFFFFF' stroke-opacity='1' stroke-width='0.21' stroke-linejoin='round' stroke-linecap='butt' title='Highland&amp;lt;br/&amp;gt;Winter Year: 2020&amp;lt;br/&amp;gt;Items per Head: 14.73'/>\n <path id='svg_52553b2cf052ba37_e261' d='M 206.292322 131.687805 L 206.475464 131.869611 L 205.899177 132.022913 L 206.292322 131.687805 Z ' fill='#3A639D' fill-opacity='1' fill-rule='evenodd' stroke='#FFFFFF' stroke-opacity='1' stroke-width='0.21' stroke-linejoin='round' stroke-linecap='butt' title='Highland&amp;lt;br/&amp;gt;Winter Year: 2020&amp;lt;br/&amp;gt;Items per Head: 14.73'/>\n <path id='svg_52553b2cf052ba37_e262' d='M 205.847291 117.924508 L 206.060660 118.788016 L 205.391183 119.890238 L 205.787097 121.544037 L 205.014443 122.190462 L 204.574845 121.686222 L 204.719841 120.042207 L 205.078841 119.170497 L 205.595344 119.330769 L 205.442864 118.519354 L 205.583347 118.358159 L 205.603035 118.751818 L 205.947885 118.473314 L 205.847291 117.924508 Z ' fill='#3A639D' fill-opacity='1' fill-rule='evenodd' stroke='#FFFFFF' stroke-opacity='1' stroke-width='0.21' stroke-linejoin='round' stroke-linecap='butt' title='Highland&amp;lt;br/&amp;gt;Winter Year: 2020&amp;lt;br/&amp;gt;Items per Head: 14.73'/>\n <path id='svg_52553b2cf052ba37_e263' d='M 203.375309 130.842038 L 203.716979 131.342444 L 203.615565 132.149141 L 203.027077 132.527316 L 202.465617 132.171271 L 202.453148 131.756611 L 203.069734 131.515022 L 203.011695 131.038303 L 203.375309 130.842038 Z ' fill='#3A639D' fill-opacity='1' fill-rule='evenodd' stroke='#FFFFFF' stroke-opacity='1' stroke-width='0.21' stroke-linejoin='round' stroke-linecap='butt' title='Highland&amp;lt;br/&amp;gt;Winter Year: 2020&amp;lt;br/&amp;gt;Items per Head: 14.73'/>\n <path id='svg_52553b2cf052ba37_e264' d='M 203.372930 141.724724 L 203.498975 141.897609 L 203.206833 141.854747 L 203.372930 141.724724 Z ' fill='#3A639D' fill-opacity='1' fill-rule='evenodd' stroke='#FFFFFF' stroke-opacity='1' stroke-width='0.21' stroke-linejoin='round' stroke-linecap='butt' title='Highland&amp;lt;br/&amp;gt;Winter Year: 2020&amp;lt;br/&amp;gt;Items per Head: 14.73'/>\n <path id='svg_52553b2cf052ba37_e265' d='M 202.159878 153.819661 L 202.298823 156.719653 L 202.976011 157.860228 L 203.212308 159.702519 L 202.671358 160.294270 L 202.483911 160.144045 L 202.445662 160.619942 L 201.452338 160.946929 L 200.609340 160.786472 L 200.224499 161.643620 L 199.855450 161.919869 L 199.279779 161.813840 L 198.955029 161.580248 L 199.069056 160.935464 L 200.034182 159.915581 L 199.139912 158.422980 L 200.185430 157.483900 L 199.084971 157.229185 L 198.146279 158.897749 L 197.148894 159.635683 L 196.690080 159.093501 L 197.597680 157.823006 L 197.676843 157.138332 L 197.340505 156.857982 L 197.721551 156.505853 L 197.830963 155.519090 L 198.638790 155.440440 L 199.536114 154.734542 L 199.441509 155.980633 L 199.625859 154.931627 L 200.051409 155.065957 L 201.231154 154.004442 L 202.159878 153.819661 Z ' fill='#3A639D' fill-opacity='1' fill-rule='evenodd' stroke='#FFFFFF' stroke-opacity='1' stroke-width='0.21' stroke-linejoin='round' stroke-linecap='butt' title='Highland&amp;lt;br/&amp;gt;Winter Year: 2020&amp;lt;br/&amp;gt;Items per Head: 14.73'/>\n <path id='svg_52553b2cf052ba37_e266' d='M 202.864445 125.765078 L 203.156484 126.100288 L 202.415105 126.548295 L 202.223761 126.108286 L 202.864445 125.765078 Z ' fill='#3A639D' fill-opacity='1' fill-rule='evenodd' stroke='#FFFFFF' stroke-opacity='1' stroke-width='0.21' stroke-linejoin='round' stroke-linecap='butt' title='Highland&amp;lt;br/&amp;gt;Winter Year: 2020&amp;lt;br/&amp;gt;Items per Head: 14.73'/>\n <path id='svg_52553b2cf052ba37_e267' d='M 200.656099 140.916835 L 201.737406 140.931355 L 202.720373 141.658175 L 201.910927 141.874702 L 201.696389 141.607416 L 201.455722 141.936577 L 201.101233 141.428788 L 201.266224 141.171202 L 200.994077 141.545583 L 200.637232 141.344293 L 200.656099 140.916835 Z ' fill='#3A639D' fill-opacity='1' fill-rule='evenodd' stroke='#FFFFFF' stroke-opacity='1' stroke-width='0.21' stroke-linejoin='round' stroke-linecap='butt' title='Highland&amp;lt;br/&amp;gt;Winter Year: 2020&amp;lt;br/&amp;gt;Items per Head: 14.73'/>\n <path id='svg_52553b2cf052ba37_e268' d='M 202.159570 149.357953 L 202.342690 149.652351 L 201.458737 150.984783 L 201.597435 151.375469 L 200.611800 152.339980 L 200.327759 151.815374 L 200.974184 151.696939 L 200.319761 151.465194 L 200.793506 150.464281 L 202.159570 149.357953 Z ' fill='#3A639D' fill-opacity='1' fill-rule='evenodd' stroke='#FFFFFF' stroke-opacity='1' stroke-width='0.21' stroke-linejoin='round' stroke-linecap='butt' title='Highland&amp;lt;br/&amp;gt;Winter Year: 2020&amp;lt;br/&amp;gt;Items per Head: 14.73'/>\n <path id='svg_52553b2cf052ba37_e269' d='M 201.674239 132.955225 L 202.215559 133.066277 L 202.252781 133.476037 L 201.593230 133.454913 L 201.674239 132.955225 Z ' fill='#3A639D' fill-opacity='1' fill-rule='evenodd' stroke='#FFFFFF' stroke-opacity='1' stroke-width='0.21' stroke-linejoin='round' stroke-linecap='butt' title='Highland&amp;lt;br/&amp;gt;Winter Year: 2020&amp;lt;br/&amp;gt;Items per Head: 14.73'/>\n <path id='svg_52553b2cf052ba37_e270' d='M 201.189953 128.069896 L 202.026266 128.673786 L 202.161109 129.065292 L 201.816342 129.249356 L 202.250730 129.426856 L 201.913163 130.406336 L 201.239256 130.966523 L 199.490400 129.188444 L 201.189953 128.069896 Z ' fill='#3A639D' fill-opacity='1' fill-rule='evenodd' stroke='#FFFFFF' stroke-opacity='1' stroke-width='0.21' stroke-linejoin='round' stroke-linecap='butt' title='Highland&amp;lt;br/&amp;gt;Winter Year: 2020&amp;lt;br/&amp;gt;Items per Head: 14.73'/>\n <path id='svg_52553b2cf052ba37_e271' d='M 199.598706 121.457410 L 199.576619 121.798322 L 199.319361 121.759888 L 199.598706 121.457410 Z ' fill='#3A639D' fill-opacity='1' fill-rule='evenodd' stroke='#FFFFFF' stroke-opacity='1' stroke-width='0.21' stroke-linejoin='round' stroke-linecap='butt' title='Highland&amp;lt;br/&amp;gt;Winter Year: 2020&amp;lt;br/&amp;gt;Items per Head: 14.73'/>\n <path id='svg_52553b2cf052ba37_e272' d='M 198.388074 127.673284 L 199.229021 127.780338 L 199.084540 128.050945 L 199.479019 128.342780 L 198.523942 127.972090 L 197.697146 128.184763 L 198.388074 127.673284 Z ' fill='#3A639D' fill-opacity='1' fill-rule='evenodd' stroke='#FFFFFF' stroke-opacity='1' stroke-width='0.21' stroke-linejoin='round' stroke-linecap='butt' title='Highland&amp;lt;br/&amp;gt;Winter Year: 2020&amp;lt;br/&amp;gt;Items per Head: 14.73'/>\n <path id='svg_52553b2cf052ba37_e273' d='M 199.456768 144.205421 L 199.229740 144.951516 L 198.699966 145.116424 L 198.792397 144.563292 L 199.456768 144.205421 Z ' fill='#3A639D' fill-opacity='1' fill-rule='evenodd' stroke='#FFFFFF' stroke-opacity='1' stroke-width='0.21' stroke-linejoin='round' stroke-linecap='butt' title='Highland&amp;lt;br/&amp;gt;Winter Year: 2020&amp;lt;br/&amp;gt;Items per Head: 14.73'/>\n <path id='svg_52553b2cf052ba37_e274' d='M 198.872380 136.371926 L 199.089154 136.782299 L 198.424681 137.963174 L 198.127432 137.872772 L 198.119003 138.313868 L 196.951870 138.926453 L 196.771601 138.610828 L 196.585795 138.968393 L 196.110511 138.740646 L 195.843082 139.195319 L 195.800117 138.548894 L 196.391784 138.443686 L 197.032365 137.454463 L 198.872380 136.371926 Z ' fill='#3A639D' fill-opacity='1' fill-rule='evenodd' stroke='#FFFFFF' stroke-opacity='1' stroke-width='0.21' stroke-linejoin='round' stroke-linecap='butt' title='Highland&amp;lt;br/&amp;gt;Winter Year: 2020&amp;lt;br/&amp;gt;Items per Head: 14.73'/>\n <path id='svg_52553b2cf052ba37_e275' d='M 195.098217 139.210290 L 195.433530 139.933212 L 195.000762 139.950520 L 194.943994 140.251706 L 194.803716 139.918692 L 194.448743 139.978623 L 194.289140 140.751046 L 193.467101 140.707055 L 193.172211 141.659056 L 192.097222 141.407357 L 192.215760 140.588967 L 191.829791 140.232327 L 192.306818 139.856305 L 193.053323 139.634198 L 193.530852 139.962811 L 194.282392 139.462030 L 194.759957 139.636961 L 195.098217 139.210290 Z ' fill='#3A639D' fill-opacity='1' fill-rule='evenodd' stroke='#FFFFFF' stroke-opacity='1' stroke-width='0.21' stroke-linejoin='round' stroke-linecap='butt' title='Highland&amp;lt;br/&amp;gt;Winter Year: 2020&amp;lt;br/&amp;gt;Items per Head: 14.73'/>\n <path id='svg_52553b2cf052ba37_e276' d='M 244.671701 152.386841 L 247.003917 152.646744 L 247.948576 153.861786 L 249.360806 154.200338 L 250.370454 155.206379 L 249.034518 156.619367 L 248.553082 155.986786 L 247.916090 155.991194 L 247.712237 156.431921 L 248.162212 157.147993 L 247.389947 157.878072 L 246.429231 157.461237 L 245.517427 157.871099 L 245.042657 157.498051 L 244.225089 158.096793 L 243.839839 157.944949 L 243.102459 158.641250 L 242.794771 158.048618 L 241.185025 159.376211 L 240.814951 159.887280 L 240.957586 160.231821 L 240.502506 160.492174 L 239.787890 158.395170 L 238.629123 158.977158 L 238.381033 158.494144 L 237.726795 158.557698 L 237.433319 157.841052 L 236.695529 158.134835 L 236.089382 159.026788 L 235.024442 158.667379 L 234.567781 158.096998 L 232.734535 158.791618 L 232.632198 158.297263 L 232.981928 157.971487 L 232.555845 156.934438 L 233.060803 156.420210 L 231.983516 156.588277 L 231.537070 156.118121 L 232.171989 155.951101 L 232.831540 155.198238 L 233.664550 154.987984 L 234.557712 153.835247 L 235.365047 154.107435 L 235.825233 153.665685 L 237.209715 154.006165 L 238.366082 153.828725 L 238.850184 154.291375 L 239.898348 154.060615 L 241.028402 155.035072 L 242.064262 154.987759 L 243.405204 154.346564 L 243.535495 153.581969 L 244.671701 152.386841 Z ' fill='#3A5A97' fill-opacity='1' fill-rule='evenodd' stroke='#FFFFFF' stroke-opacity='1' stroke-width='0.21' stroke-linejoin='round' stroke-linecap='butt' title='Lothian&amp;lt;br/&amp;gt;Winter Year: 2020&amp;lt;br/&amp;gt;Items per Head: 15.24'/>\n <path id='svg_52553b2cf052ba37_e277' d='M 250.525745 76.491919 L 250.718380 76.793290 L 250.312581 76.804509 L 250.429889 77.374437 L 250.094760 77.565330 L 249.751430 77.322879 L 249.956883 76.667739 L 250.525745 76.491919 Z ' fill='#3A5793' fill-opacity='1' fill-rule='evenodd' stroke='#FFFFFF' stroke-opacity='1' stroke-width='0.21' stroke-linejoin='round' stroke-linecap='butt' title='Orkney&amp;lt;br/&amp;gt;Winter Year: 2020&amp;lt;br/&amp;gt;Items per Head: 15.4'/>\n <path id='svg_52553b2cf052ba37_e278' d='M 248.435035 78.143934 L 248.501318 78.474222 L 248.916367 78.537983 L 248.295435 79.442670 L 248.791676 79.375321 L 249.329183 78.792491 L 249.734347 78.866836 L 250.066214 78.323629 L 250.209525 78.984737 L 250.681403 79.171917 L 249.458774 79.148969 L 248.981667 79.973714 L 249.095550 80.410052 L 248.824511 79.957452 L 248.327407 80.470325 L 248.276341 79.991824 L 247.963957 80.275865 L 247.565827 80.112351 L 246.885153 81.255388 L 246.860523 80.404985 L 248.080569 79.331944 L 247.747224 78.430539 L 247.913014 78.855124 L 248.214201 78.778955 L 248.435035 78.143934 Z ' fill='#3A5793' fill-opacity='1' fill-rule='evenodd' stroke='#FFFFFF' stroke-opacity='1' stroke-width='0.21' stroke-linejoin='round' stroke-linecap='butt' title='Orkney&amp;lt;br/&amp;gt;Winter Year: 2020&amp;lt;br/&amp;gt;Items per Head: 15.4'/>\n <path id='svg_52553b2cf052ba37_e279' d='M 247.648313 81.752716 L 247.690067 82.192992 L 248.335406 82.237904 L 247.922653 82.349451 L 248.030527 82.817944 L 248.724840 82.692372 L 248.709828 83.750277 L 248.350254 83.567138 L 247.894291 83.835756 L 247.901017 83.252087 L 247.594560 83.022209 L 247.319213 83.173089 L 247.397679 83.760819 L 246.921454 83.686270 L 247.145979 82.978667 L 247.710351 82.749570 L 247.091222 81.963728 L 247.648313 81.752716 Z ' fill='#3A5793' fill-opacity='1' fill-rule='evenodd' stroke='#FFFFFF' stroke-opacity='1' stroke-width='0.21' stroke-linejoin='round' stroke-linecap='butt' title='Orkney&amp;lt;br/&amp;gt;Winter Year: 2020&amp;lt;br/&amp;gt;Items per Head: 15.4'/>\n <path id='svg_52553b2cf052ba37_e280' d='M 248.131983 81.876916 L 248.274393 82.067151 L 247.977493 82.151810 L 248.131983 81.876916 Z ' fill='#3A5793' fill-opacity='1' fill-rule='evenodd' stroke='#FFFFFF' stroke-opacity='1' stroke-width='0.21' stroke-linejoin='round' stroke-linecap='butt' title='Orkney&amp;lt;br/&amp;gt;Winter Year: 2020&amp;lt;br/&amp;gt;Items per Head: 15.4'/>\n <path id='svg_52553b2cf052ba37_e281' d='M 246.685175 87.626633 L 247.182730 87.708503 L 246.954718 87.949742 L 246.685175 87.626633 Z ' fill='#3A5793' fill-opacity='1' fill-rule='evenodd' stroke='#FFFFFF' stroke-opacity='1' stroke-width='0.21' stroke-linejoin='round' stroke-linecap='butt' title='Orkney&amp;lt;br/&amp;gt;Winter Year: 2020&amp;lt;br/&amp;gt;Items per Head: 15.4'/>\n <path id='svg_52553b2cf052ba37_e282' d='M 240.694648 81.860713 L 242.427281 82.579247 L 242.748011 83.003791 L 242.557550 83.165255 L 243.236768 83.775831 L 243.137200 84.555192 L 242.587410 84.308946 L 242.537923 84.885521 L 241.793571 85.159287 L 242.011924 85.326758 L 243.159697 85.172413 L 243.708482 85.772856 L 244.070189 85.063511 L 244.447769 85.222043 L 244.260999 85.607641 L 244.562555 85.617937 L 244.192133 86.211758 L 244.573875 86.335157 L 244.913783 85.763874 L 245.293003 85.874928 L 245.560310 85.589348 L 245.695318 86.274021 L 245.075636 86.478798 L 245.240276 87.126248 L 245.618656 87.276246 L 245.807641 87.131457 L 245.447185 86.705581 L 246.676398 86.083294 L 246.611818 87.303666 L 245.751633 87.400303 L 245.173562 88.373302 L 244.908922 87.924149 L 244.422544 87.824560 L 244.389699 87.920772 L 243.953907 87.835367 L 243.583196 86.352691 L 240.950574 87.470850 L 240.376829 86.656996 L 240.281363 85.763628 L 239.714121 86.524531 L 238.994994 86.133908 L 238.929306 84.993661 L 239.309552 84.095986 L 239.073624 82.977150 L 239.539533 82.391309 L 239.277149 82.228820 L 240.694648 81.860713 Z ' fill='#3A5793' fill-opacity='1' fill-rule='evenodd' stroke='#FFFFFF' stroke-opacity='1' stroke-width='0.21' stroke-linejoin='round' stroke-linecap='butt' title='Orkney&amp;lt;br/&amp;gt;Winter Year: 2020&amp;lt;br/&amp;gt;Items per Head: 15.4'/>\n <path id='svg_52553b2cf052ba37_e283' d='M 244.366377 87.989089 L 244.221869 88.412393 L 244.555028 88.306897 L 244.522789 88.744321 L 244.896821 88.788946 L 244.306651 89.084228 L 244.629904 89.568061 L 244.001773 90.129027 L 244.085181 91.528666 L 243.425385 91.421407 L 243.402825 90.305093 L 242.904429 89.829545 L 243.365090 89.728131 L 243.123070 89.394520 L 242.744484 89.536766 L 242.999855 89.223274 L 243.693839 89.379610 L 244.339465 89.018210 L 243.308016 88.777053 L 244.211020 88.713292 L 244.093979 88.226012 L 244.366377 87.989089 Z ' fill='#3A5793' fill-opacity='1' fill-rule='evenodd' stroke='#FFFFFF' stroke-opacity='1' stroke-width='0.21' stroke-linejoin='round' stroke-linecap='butt' title='Orkney&amp;lt;br/&amp;gt;Winter Year: 2020&amp;lt;br/&amp;gt;Items per Head: 15.4'/>\n <path id='svg_52553b2cf052ba37_e284' d='M 246.374350 79.815738 L 246.565550 80.235116 L 246.284031 80.124615 L 246.374350 79.815738 Z ' fill='#3A5793' fill-opacity='1' fill-rule='evenodd' stroke='#FFFFFF' stroke-opacity='1' stroke-width='0.21' stroke-linejoin='round' stroke-linecap='butt' title='Orkney&amp;lt;br/&amp;gt;Winter Year: 2020&amp;lt;br/&amp;gt;Items per Head: 15.4'/>\n <path id='svg_52553b2cf052ba37_e285' d='M 246.142748 79.718610 L 246.102450 80.159275 L 246.440880 80.366000 L 246.088873 81.089680 L 246.367603 82.068402 L 245.752453 82.355048 L 245.321100 81.092858 L 245.887091 81.089127 L 245.756474 80.078677 L 246.142748 79.718610 Z ' fill='#3A5793' fill-opacity='1' fill-rule='evenodd' stroke='#FFFFFF' stroke-opacity='1' stroke-width='0.21' stroke-linejoin='round' stroke-linecap='butt' title='Orkney&amp;lt;br/&amp;gt;Winter Year: 2020&amp;lt;br/&amp;gt;Items per Head: 15.4'/>\n <path id='svg_52553b2cf052ba37_e286' d='M 245.580346 83.441748 L 245.337835 84.370944 L 245.540807 84.804388 L 245.288184 85.030351 L 244.028127 84.736096 L 244.409010 83.652494 L 244.949426 84.140204 L 245.580346 83.441748 Z ' fill='#3A5793' fill-opacity='1' fill-rule='evenodd' stroke='#FFFFFF' stroke-opacity='1' stroke-width='0.21' stroke-linejoin='round' stroke-linecap='butt' title='Orkney&amp;lt;br/&amp;gt;Winter Year: 2020&amp;lt;br/&amp;gt;Items per Head: 15.4'/>\n <path id='svg_52553b2cf052ba37_e287' d='M 243.872653 77.188057 L 244.163995 77.466315 L 243.487094 78.168277 L 244.473180 78.469833 L 244.736384 79.351345 L 245.017165 79.310267 L 245.231888 79.765841 L 244.981686 79.709832 L 244.685976 80.239872 L 244.775658 79.601630 L 244.329784 79.101860 L 243.994985 78.936091 L 243.518677 79.543735 L 242.527874 77.878494 L 243.274361 77.935200 L 243.872653 77.188057 Z ' fill='#3A5793' fill-opacity='1' fill-rule='evenodd' stroke='#FFFFFF' stroke-opacity='1' stroke-width='0.21' stroke-linejoin='round' stroke-linecap='butt' title='Orkney&amp;lt;br/&amp;gt;Winter Year: 2020&amp;lt;br/&amp;gt;Items per Head: 15.4'/>\n <path id='svg_52553b2cf052ba37_e288' d='M 244.782714 76.613739 L 244.800207 77.799414 L 244.449964 78.074390 L 244.782714 76.613739 Z ' fill='#3A5793' fill-opacity='1' fill-rule='evenodd' stroke='#FFFFFF' stroke-opacity='1' stroke-width='0.21' stroke-linejoin='round' stroke-linecap='butt' title='Orkney&amp;lt;br/&amp;gt;Winter Year: 2020&amp;lt;br/&amp;gt;Items per Head: 15.4'/>\n <path id='svg_52553b2cf052ba37_e289' d='M 244.196172 81.533134 L 244.224228 82.634413 L 243.930322 81.877429 L 244.196172 81.533134 Z ' fill='#3A5793' fill-opacity='1' fill-rule='evenodd' stroke='#FFFFFF' stroke-opacity='1' stroke-width='0.21' stroke-linejoin='round' stroke-linecap='butt' title='Orkney&amp;lt;br/&amp;gt;Winter Year: 2020&amp;lt;br/&amp;gt;Items per Head: 15.4'/>\n <path id='svg_52553b2cf052ba37_e290' d='M 243.703971 83.337997 L 243.902862 83.633174 L 243.565847 83.783952 L 243.347617 83.441933 L 243.703971 83.337997 Z ' fill='#3A5793' fill-opacity='1' fill-rule='evenodd' stroke='#FFFFFF' stroke-opacity='1' stroke-width='0.21' stroke-linejoin='round' stroke-linecap='butt' title='Orkney&amp;lt;br/&amp;gt;Winter Year: 2020&amp;lt;br/&amp;gt;Items per Head: 15.4'/>\n <path id='svg_52553b2cf052ba37_e291' d='M 242.457880 80.827971 L 242.949036 81.353931 L 243.860676 81.312627 L 243.555756 81.722918 L 243.714737 82.333678 L 242.814890 82.541861 L 242.169818 82.081425 L 241.882311 81.425793 L 242.457880 80.827971 Z ' fill='#3A5793' fill-opacity='1' fill-rule='evenodd' stroke='#FFFFFF' stroke-opacity='1' stroke-width='0.21' stroke-linejoin='round' stroke-linecap='butt' title='Orkney&amp;lt;br/&amp;gt;Winter Year: 2020&amp;lt;br/&amp;gt;Items per Head: 15.4'/>\n <path id='svg_52553b2cf052ba37_e292' d='M 243.723762 82.508308 L 243.681432 82.901352 L 243.108510 82.824527 L 243.723762 82.508308 Z ' fill='#3A5793' fill-opacity='1' fill-rule='evenodd' stroke='#FFFFFF' stroke-opacity='1' stroke-width='0.21' stroke-linejoin='round' stroke-linecap='butt' title='Orkney&amp;lt;br/&amp;gt;Winter Year: 2020&amp;lt;br/&amp;gt;Items per Head: 15.4'/>\n <path id='svg_52553b2cf052ba37_e293' d='M 242.359645 88.802462 L 241.870848 89.201392 L 242.276852 89.226639 L 242.229949 89.647695 L 241.526182 89.585064 L 241.490294 89.183817 L 242.359645 88.802462 Z ' fill='#3A5793' fill-opacity='1' fill-rule='evenodd' stroke='#FFFFFF' stroke-opacity='1' stroke-width='0.21' stroke-linejoin='round' stroke-linecap='butt' title='Orkney&amp;lt;br/&amp;gt;Winter Year: 2020&amp;lt;br/&amp;gt;Items per Head: 15.4'/>\n <path id='svg_52553b2cf052ba37_e294' d='M 239.001884 86.866817 L 240.688312 88.152039 L 240.649263 89.018148 L 241.222494 89.477088 L 240.134421 90.231079 L 241.367672 89.795828 L 241.360188 90.247874 L 241.606863 90.268650 L 240.417805 90.294061 L 240.415693 90.594589 L 239.620438 90.431241 L 238.688536 88.385629 L 238.045023 88.249473 L 238.450228 87.101290 L 239.001884 86.866817 Z ' fill='#3A5793' fill-opacity='1' fill-rule='evenodd' stroke='#FFFFFF' stroke-opacity='1' stroke-width='0.21' stroke-linejoin='round' stroke-linecap='butt' title='Orkney&amp;lt;br/&amp;gt;Winter Year: 2020&amp;lt;br/&amp;gt;Items per Head: 15.4'/>\n <path id='svg_52553b2cf052ba37_e295' d='M 239.552576 86.700022 L 240.089672 87.129961 L 239.581248 87.071861 L 239.552576 86.700022 Z ' fill='#3A5793' fill-opacity='1' fill-rule='evenodd' stroke='#FFFFFF' stroke-opacity='1' stroke-width='0.21' stroke-linejoin='round' stroke-linecap='butt' title='Orkney&amp;lt;br/&amp;gt;Winter Year: 2020&amp;lt;br/&amp;gt;Items per Head: 15.4'/>\n <path id='svg_52553b2cf052ba37_e296' d='M 269.029807 52.689510 L 269.103904 52.969901 L 268.591440 53.179968 L 269.029807 52.689510 Z ' fill='#3B72A1' fill-opacity='1' fill-rule='evenodd' stroke='#FFFFFF' stroke-opacity='1' stroke-width='0.21' stroke-linejoin='round' stroke-linecap='butt' title='Shetland&amp;lt;br/&amp;gt;Winter Year: 2020&amp;lt;br/&amp;gt;Items per Head: 13.85'/>\n <path id='svg_52553b2cf052ba37_e297' d='M 267.552278 43.241695 L 267.584005 44.171013 L 268.022065 43.260953 L 268.862253 43.833671 L 268.369355 44.047266 L 268.641275 44.723838 L 268.027643 44.586821 L 268.619536 45.484289 L 267.685378 46.515042 L 268.100140 46.934789 L 267.835398 47.164032 L 267.191434 46.806980 L 266.801466 47.281647 L 266.428726 46.954024 L 266.386684 46.140764 L 266.748575 46.177454 L 266.600996 45.590421 L 266.946152 44.709174 L 266.689080 44.496809 L 267.552278 43.241695 Z ' fill='#3B72A1' fill-opacity='1' fill-rule='evenodd' stroke='#FFFFFF' stroke-opacity='1' stroke-width='0.21' stroke-linejoin='round' stroke-linecap='butt' title='Shetland&amp;lt;br/&amp;gt;Winter Year: 2020&amp;lt;br/&amp;gt;Items per Head: 13.85'/>\n <path id='svg_52553b2cf052ba37_e298' d='M 267.739828 48.088551 L 268.135846 48.201346 L 268.410801 48.865511 L 268.789346 48.496955 L 268.504587 49.564439 L 268.152682 49.116431 L 267.496640 49.030645 L 267.841960 49.558798 L 267.457324 49.709945 L 266.834997 48.642810 L 266.957637 48.158895 L 267.401542 48.387459 L 267.739828 48.088551 Z ' fill='#3B72A1' fill-opacity='1' fill-rule='evenodd' stroke='#FFFFFF' stroke-opacity='1' stroke-width='0.21' stroke-linejoin='round' stroke-linecap='butt' title='Shetland&amp;lt;br/&amp;gt;Winter Year: 2020&amp;lt;br/&amp;gt;Items per Head: 13.85'/>\n <path id='svg_52553b2cf052ba37_e299' d='M 267.216639 47.044816 L 267.616983 47.223198 L 267.518542 47.490217 L 267.216639 47.044816 Z ' fill='#3B72A1' fill-opacity='1' fill-rule='evenodd' stroke='#FFFFFF' stroke-opacity='1' stroke-width='0.21' stroke-linejoin='round' stroke-linecap='butt' title='Shetland&amp;lt;br/&amp;gt;Winter Year: 2020&amp;lt;br/&amp;gt;Items per Head: 13.85'/>\n <path id='svg_52553b2cf052ba37_e300' d='M 267.320020 53.695242 L 266.590374 55.008397 L 265.919583 54.945927 L 266.303850 54.149238 L 267.320020 53.695242 Z ' fill='#3B72A1' fill-opacity='1' fill-rule='evenodd' stroke='#FFFFFF' stroke-opacity='1' stroke-width='0.21' stroke-linejoin='round' stroke-linecap='butt' title='Shetland&amp;lt;br/&amp;gt;Winter Year: 2020&amp;lt;br/&amp;gt;Items per Head: 13.85'/>\n <path id='svg_52553b2cf052ba37_e301' d='M 266.362279 48.421914 L 266.608379 48.608745 L 266.221488 48.952466 L 266.362279 48.421914 Z ' fill='#3B72A1' fill-opacity='1' fill-rule='evenodd' stroke='#FFFFFF' stroke-opacity='1' stroke-width='0.21' stroke-linejoin='round' stroke-linecap='butt' title='Shetland&amp;lt;br/&amp;gt;Winter Year: 2020&amp;lt;br/&amp;gt;Items per Head: 13.85'/>\n <path id='svg_52553b2cf052ba37_e302' d='M 265.699446 45.814064 L 266.216299 46.112155 L 266.454976 47.981087 L 265.887262 47.916178 L 265.482058 47.360420 L 266.038143 48.493488 L 265.739027 48.875356 L 265.300372 48.750644 L 266.232050 49.335770 L 266.115870 50.059511 L 265.730517 50.028522 L 266.042880 50.416604 L 265.982154 51.217005 L 265.526355 51.413682 L 264.985896 51.039301 L 265.154230 51.692699 L 264.248312 52.051883 L 264.071387 52.418429 L 264.432950 52.513342 L 264.125733 52.751959 L 264.430899 53.012927 L 264.108403 52.764160 L 263.413784 53.412944 L 264.404443 53.142643 L 264.478786 53.986072 L 264.968219 52.792154 L 265.067993 53.109933 L 265.761176 52.301081 L 264.736782 53.861257 L 264.873265 54.156785 L 265.104804 53.598135 L 265.487697 53.726723 L 265.486774 54.451593 L 265.005954 54.713586 L 264.218390 54.591090 L 264.448023 55.247155 L 264.582763 54.883602 L 264.812889 55.249697 L 265.389872 55.147955 L 265.433144 55.630661 L 264.558071 56.191219 L 264.685469 56.549009 L 265.148488 56.291608 L 265.218011 56.684342 L 264.743447 56.679093 L 264.366913 57.158601 L 264.500401 56.668694 L 264.173005 56.779831 L 264.092119 56.477968 L 264.181106 57.015247 L 263.766630 57.358250 L 264.282724 57.297339 L 263.906212 58.029530 L 264.493962 57.499552 L 263.917757 58.675606 L 264.642751 57.936586 L 264.548084 58.818222 L 264.912375 59.205257 L 264.590085 59.211943 L 264.646237 59.668624 L 264.453602 59.386327 L 264.428336 59.899959 L 264.100632 59.657487 L 264.156189 60.178504 L 263.868599 60.326104 L 264.122001 61.519836 L 264.494475 61.839337 L 264.066833 61.583843 L 263.791856 61.851438 L 264.128809 63.242830 L 263.940338 62.731267 L 263.790072 63.048862 L 263.565875 62.697861 L 263.297706 62.835861 L 263.575493 63.655253 L 263.377217 64.440767 L 263.145555 64.401966 L 263.408309 64.721220 L 263.381073 65.233767 L 263.077877 65.280689 L 263.421577 65.462866 L 263.319650 65.996187 L 263.098077 65.467008 L 262.911122 65.933840 L 262.843321 64.992546 L 262.480446 65.299721 L 262.121241 65.176979 L 261.994191 64.616894 L 262.316769 64.457030 L 262.301408 63.859518 L 262.701690 63.849613 L 262.674209 63.344080 L 262.334939 63.330606 L 262.409795 63.073123 L 262.687745 63.271255 L 262.494802 62.654752 L 262.827244 62.336563 L 263.302566 60.395749 L 263.373198 59.371292 L 262.933169 59.595615 L 263.151174 58.144336 L 262.776587 58.963031 L 263.330314 57.219100 L 262.667072 58.883562 L 263.050969 56.879358 L 262.440352 58.048665 L 262.332704 57.034195 L 261.485871 56.815638 L 262.111397 57.229355 L 262.295563 58.209963 L 262.193944 57.851578 L 261.906723 58.071737 L 261.862282 57.674777 L 261.834431 58.545276 L 261.601559 58.881204 L 261.435645 58.370996 L 261.138888 59.301319 L 260.163508 58.294048 L 260.213036 57.983654 L 260.859974 57.972578 L 260.657761 57.880495 L 261.040305 57.603366 L 260.629664 57.738579 L 260.801750 57.374287 L 260.333995 57.007474 L 260.539839 57.410526 L 260.133565 58.071532 L 259.961459 57.435094 L 259.267907 57.922640 L 258.973303 57.639420 L 259.142825 57.418462 L 258.527573 57.290612 L 258.647834 56.310167 L 258.387480 56.068167 L 259.069897 55.615034 L 259.544974 55.643951 L 259.863984 56.083652 L 259.826350 55.740546 L 260.282376 55.955700 L 260.115518 55.660872 L 260.629152 55.348118 L 260.945699 56.371898 L 261.150271 56.040380 L 260.824803 55.638516 L 261.316492 55.850286 L 261.089053 55.538229 L 261.510296 55.120576 L 262.169149 56.105596 L 262.433482 55.676437 L 262.085659 55.256752 L 262.315046 54.750091 L 262.593982 54.928125 L 262.491623 54.416421 L 263.359251 54.601038 L 262.914506 54.180779 L 262.210269 54.208199 L 262.319148 53.622991 L 262.072022 54.038737 L 261.751864 53.872209 L 261.812591 53.066763 L 261.205541 53.139465 L 261.231791 52.490373 L 261.544319 52.339349 L 261.057162 52.318102 L 261.428159 51.876965 L 261.024451 51.927109 L 261.148241 51.446474 L 260.685345 52.314000 L 260.681079 51.589991 L 260.050282 51.451745 L 259.396494 51.849793 L 259.156442 51.527196 L 259.392905 51.015818 L 259.944212 51.136038 L 259.902437 50.368060 L 260.271383 49.942100 L 260.446525 50.503929 L 261.221230 51.115386 L 261.832175 50.927222 L 261.158371 50.966905 L 260.670272 50.364983 L 261.376888 49.533880 L 261.379863 48.449601 L 262.489551 48.927283 L 262.387133 48.293019 L 264.171468 48.110597 L 264.466378 47.587940 L 264.529646 48.411640 L 265.012004 48.772095 L 264.602759 48.268819 L 264.779747 46.000588 L 265.239852 45.940397 L 265.382386 46.441930 L 265.336139 45.880718 L 265.738494 46.075958 L 265.699446 45.814064 Z ' fill='#3B72A1' fill-opacity='1' fill-rule='evenodd' stroke='#FFFFFF' stroke-opacity='1' stroke-width='0.21' stroke-linejoin='round' stroke-linecap='butt' title='Shetland&amp;lt;br/&amp;gt;Winter Year: 2020&amp;lt;br/&amp;gt;Items per Head: 13.85'/>\n <path id='svg_52553b2cf052ba37_e303' d='M 265.996921 59.046604 L 266.346487 59.131714 L 266.297472 59.574081 L 265.996921 59.046604 Z ' fill='#3B72A1' fill-opacity='1' fill-rule='evenodd' stroke='#FFFFFF' stroke-opacity='1' stroke-width='0.21' stroke-linejoin='round' stroke-linecap='butt' title='Shetland&amp;lt;br/&amp;gt;Winter Year: 2020&amp;lt;br/&amp;gt;Items per Head: 13.85'/>\n <path id='svg_52553b2cf052ba37_e304' d='M 265.624898 58.171100 L 265.538352 58.880999 L 265.895609 58.789838 L 265.596187 60.246860 L 265.027488 59.862019 L 265.120659 59.189896 L 264.715104 58.654729 L 264.924125 58.391669 L 265.506155 58.685042 L 265.372235 58.352291 L 265.624898 58.171100 Z ' fill='#3B72A1' fill-opacity='1' fill-rule='evenodd' stroke='#FFFFFF' stroke-opacity='1' stroke-width='0.21' stroke-linejoin='round' stroke-linecap='butt' title='Shetland&amp;lt;br/&amp;gt;Winter Year: 2020&amp;lt;br/&amp;gt;Items per Head: 13.85'/>\n <path id='svg_52553b2cf052ba37_e305' d='M 262.992028 60.405697 L 262.600728 61.709929 L 262.639490 60.838875 L 262.992028 60.405697 Z ' fill='#3B72A1' fill-opacity='1' fill-rule='evenodd' stroke='#FFFFFF' stroke-opacity='1' stroke-width='0.21' stroke-linejoin='round' stroke-linecap='butt' title='Shetland&amp;lt;br/&amp;gt;Winter Year: 2020&amp;lt;br/&amp;gt;Items per Head: 13.85'/>\n <path id='svg_52553b2cf052ba37_e306' d='M 262.657093 60.405642 L 262.708808 60.459428 L 262.221630 61.694753 L 262.657093 60.405642 Z ' fill='#3B72A1' fill-opacity='1' fill-rule='evenodd' stroke='#FFFFFF' stroke-opacity='1' stroke-width='0.21' stroke-linejoin='round' stroke-linecap='butt' title='Shetland&amp;lt;br/&amp;gt;Winter Year: 2020&amp;lt;br/&amp;gt;Items per Head: 13.85'/>\n <path id='svg_52553b2cf052ba37_e307' d='M 262.719283 60.221541 L 262.821194 59.919852 L 262.764529 60.226904 L 262.719283 60.221541 Z ' fill='#3B72A1' fill-opacity='1' fill-rule='evenodd' stroke='#FFFFFF' stroke-opacity='1' stroke-width='0.21' stroke-linejoin='round' stroke-linecap='butt' title='Shetland&amp;lt;br/&amp;gt;Winter Year: 2020&amp;lt;br/&amp;gt;Items per Head: 13.85'/>\n <path id='svg_52553b2cf052ba37_e308' d='M 261.492761 53.722211 L 262.054404 54.230942 L 261.457794 54.762807 L 260.954416 54.094131 L 261.492761 53.722211 Z ' fill='#3B72A1' fill-opacity='1' fill-rule='evenodd' stroke='#FFFFFF' stroke-opacity='1' stroke-width='0.21' stroke-linejoin='round' stroke-linecap='butt' title='Shetland&amp;lt;br/&amp;gt;Winter Year: 2020&amp;lt;br/&amp;gt;Items per Head: 13.85'/>\n <path id='svg_52553b2cf052ba37_e309' d='M 260.976256 54.845149 L 261.391347 55.168977 L 260.995433 55.541102 L 260.976256 54.845149 Z ' fill='#3B72A1' fill-opacity='1' fill-rule='evenodd' stroke='#FFFFFF' stroke-opacity='1' stroke-width='0.21' stroke-linejoin='round' stroke-linecap='butt' title='Shetland&amp;lt;br/&amp;gt;Winter Year: 2020&amp;lt;br/&amp;gt;Items per Head: 13.85'/>\n <path id='svg_52553b2cf052ba37_e310' d='M 259.743292 57.860296 L 259.928482 58.256005 L 259.509187 58.104346 L 259.743292 57.860296 Z ' fill='#3B72A1' fill-opacity='1' fill-rule='evenodd' stroke='#FFFFFF' stroke-opacity='1' stroke-width='0.21' stroke-linejoin='round' stroke-linecap='butt' title='Shetland&amp;lt;br/&amp;gt;Winter Year: 2020&amp;lt;br/&amp;gt;Items per Head: 13.85'/>\n <path id='svg_52553b2cf052ba37_e311' d='M 259.566304 72.850713 L 259.562817 73.542768 L 259.027035 73.796069 L 259.198690 72.885475 L 259.566304 72.850713 Z ' fill='#3B72A1' fill-opacity='1' fill-rule='evenodd' stroke='#FFFFFF' stroke-opacity='1' stroke-width='0.21' stroke-linejoin='round' stroke-linecap='butt' title='Shetland&amp;lt;br/&amp;gt;Winter Year: 2020&amp;lt;br/&amp;gt;Items per Head: 13.85'/>\n <path id='svg_52553b2cf052ba37_e312' d='M 258.208851 54.748349 L 258.573964 55.085835 L 258.768013 54.818488 L 258.814445 55.323590 L 258.211621 55.360423 L 257.981208 54.965842 L 258.208851 54.748349 Z ' fill='#3B72A1' fill-opacity='1' fill-rule='evenodd' stroke='#FFFFFF' stroke-opacity='1' stroke-width='0.21' stroke-linejoin='round' stroke-linecap='butt' title='Shetland&amp;lt;br/&amp;gt;Winter Year: 2020&amp;lt;br/&amp;gt;Items per Head: 13.85'/>\n <path id='svg_52553b2cf052ba37_e313' d='M 254.185410 59.065165 L 254.571172 59.480768 L 254.289694 60.165440 L 253.684901 59.616226 L 254.185410 59.065165 Z ' fill='#3B72A1' fill-opacity='1' fill-rule='evenodd' stroke='#FFFFFF' stroke-opacity='1' stroke-width='0.21' stroke-linejoin='round' stroke-linecap='butt' title='Shetland&amp;lt;br/&amp;gt;Winter Year: 2020&amp;lt;br/&amp;gt;Items per Head: 13.85'/>\n <path id='svg_52553b2cf052ba37_e314' d='M 210.140009 81.143391 L 210.267058 81.508440 L 209.932873 81.563814 L 210.140009 81.143391 Z ' fill='#3A649E' fill-opacity='1' fill-rule='evenodd' stroke='#FFFFFF' stroke-opacity='1' stroke-width='0.21' stroke-linejoin='round' stroke-linecap='butt' title='Western Isles&amp;lt;br/&amp;gt;Winter Year: 2020&amp;lt;br/&amp;gt;Items per Head: 14.63'/>\n <path id='svg_52553b2cf052ba37_e315' d='M 198.365033 105.478333 L 197.381747 106.418920 L 197.757747 107.219733 L 197.465052 107.392660 L 197.909694 107.398054 L 198.268407 108.153583 L 197.785742 108.279813 L 198.311270 109.073489 L 196.662296 108.604586 L 196.950126 108.954744 L 196.522629 108.954642 L 196.604087 109.286221 L 196.967374 109.313088 L 197.357937 110.273127 L 196.622094 110.057297 L 196.650498 110.737028 L 195.868308 110.002621 L 196.155815 110.467219 L 195.981412 110.730875 L 195.794047 110.488691 L 195.822368 111.041167 L 195.521675 110.857003 L 195.610517 111.363969 L 195.013435 111.147257 L 195.275922 111.562286 L 194.802507 111.661629 L 194.678000 112.100939 L 194.310899 112.000797 L 194.294800 112.295256 L 192.541741 109.674898 L 193.145919 109.792615 L 193.167761 110.202578 L 193.879895 109.832239 L 194.300747 109.099943 L 194.697277 109.105378 L 194.891800 108.273763 L 196.512395 108.505999 L 195.922348 107.946858 L 196.156493 107.730945 L 195.380638 107.631008 L 195.543661 107.355089 L 195.286279 107.534742 L 194.381037 106.886265 L 194.424209 107.143441 L 194.083461 107.171640 L 193.415091 106.773881 L 193.341363 106.144580 L 193.042557 106.252659 L 193.452212 105.527687 L 193.827619 105.820035 L 194.146524 105.352236 L 195.626001 105.013746 L 194.015989 105.300863 L 193.760249 105.101214 L 194.277265 104.847320 L 193.820646 104.784769 L 194.231020 104.229607 L 193.792139 104.656284 L 193.483282 104.551385 L 192.998361 103.182961 L 193.598539 102.374417 L 193.495690 101.822228 L 194.258602 101.860004 L 193.993019 101.555822 L 194.568690 100.503022 L 194.524063 100.775827 L 195.103036 101.097254 L 195.320323 100.754150 L 195.907480 101.306544 L 195.860884 101.538944 L 195.236055 101.492924 L 196.046834 101.922514 L 196.284628 103.573235 L 196.103335 102.101038 L 196.292319 102.294227 L 196.214387 101.923847 L 196.443057 102.078069 L 196.555524 101.666794 L 197.781456 101.923457 L 197.926225 102.527101 L 198.132437 102.440453 L 198.270028 102.135492 L 197.700776 101.873498 L 197.930572 101.488842 L 197.156134 100.483951 L 197.073485 100.012667 L 197.599853 99.897984 L 197.010831 99.852190 L 197.306563 99.329738 L 197.883875 99.319380 L 199.221248 98.307782 L 199.350636 98.582451 L 200.488689 98.153005 L 200.857799 97.451988 L 203.574528 95.713161 L 204.145790 94.927155 L 205.025416 96.124682 L 204.830484 96.578432 L 205.103246 97.263104 L 204.499888 98.316211 L 205.070227 98.972686 L 204.182193 99.496327 L 203.535193 100.558806 L 203.081035 100.601484 L 202.838050 101.368396 L 203.400925 101.942385 L 205.020494 100.766699 L 205.275085 100.895082 L 205.004026 101.748847 L 203.899628 102.618897 L 203.354267 102.007068 L 202.656550 102.384075 L 202.145585 101.792325 L 202.326509 103.144916 L 201.651229 103.411443 L 202.289594 103.368663 L 202.262010 103.628301 L 200.861184 103.303077 L 201.625429 103.783446 L 201.061223 104.198679 L 199.082592 104.524354 L 201.456091 104.523698 L 201.885579 104.048927 L 201.871326 104.673205 L 202.103276 104.510265 L 202.200279 104.885670 L 202.096712 105.516304 L 201.365137 105.472908 L 202.269804 105.736770 L 201.852252 106.617504 L 201.274858 106.199645 L 201.113253 106.433748 L 201.007202 106.126634 L 199.645137 106.362399 L 200.802837 106.514757 L 201.078470 106.828637 L 200.745311 107.970956 L 200.149028 108.179732 L 199.841197 107.475166 L 199.870422 108.405733 L 199.495529 108.190190 L 199.411853 108.510327 L 198.722361 107.282489 L 199.082796 108.324316 L 198.763378 108.078113 L 198.537375 108.280941 L 197.986621 107.257981 L 197.917263 106.117611 L 198.365033 105.478333 Z M 198.488113 105.302613 L 198.582494 105.167867 L 199.514848 105.240856 L 198.295027 105.051296 L 198.488113 105.302613 Z ' fill='#3A649E' fill-opacity='1' fill-rule='evenodd' stroke='#FFFFFF' stroke-opacity='1' stroke-width='0.21' stroke-linejoin='round' stroke-linecap='butt' title='Western Isles&amp;lt;br/&amp;gt;Winter Year: 2020&amp;lt;br/&amp;gt;Items per Head: 14.63'/>\n <path id='svg_52553b2cf052ba37_e316' d='M 197.840540 109.103000 L 198.477695 109.336303 L 198.560550 109.679306 L 197.951367 109.759617 L 197.840540 109.103000 Z ' fill='#3A649E' fill-opacity='1' fill-rule='evenodd' stroke='#FFFFFF' stroke-opacity='1' stroke-width='0.21' stroke-linejoin='round' stroke-linecap='butt' title='Western Isles&amp;lt;br/&amp;gt;Winter Year: 2020&amp;lt;br/&amp;gt;Items per Head: 14.63'/>\n <path id='svg_52553b2cf052ba37_e317' d='M 196.191417 100.229543 L 196.683414 100.357208 L 196.799882 100.939216 L 197.048363 100.773016 L 197.392903 101.707278 L 196.391292 101.484988 L 196.585692 101.075248 L 196.191417 100.229543 Z ' fill='#3A649E' fill-opacity='1' fill-rule='evenodd' stroke='#FFFFFF' stroke-opacity='1' stroke-width='0.21' stroke-linejoin='round' stroke-linecap='butt' title='Western Isles&amp;lt;br/&amp;gt;Winter Year: 2020&amp;lt;br/&amp;gt;Items per Head: 14.63'/>\n <path id='svg_52553b2cf052ba37_e318' d='M 194.206716 107.866055 L 194.451793 108.557190 L 194.106021 108.823901 L 193.689186 108.468182 L 193.287428 108.880402 L 193.210110 108.441623 L 194.206716 107.866055 Z ' fill='#3A649E' fill-opacity='1' fill-rule='evenodd' stroke='#FFFFFF' stroke-opacity='1' stroke-width='0.21' stroke-linejoin='round' stroke-linecap='butt' title='Western Isles&amp;lt;br/&amp;gt;Winter Year: 2020&amp;lt;br/&amp;gt;Items per Head: 14.63'/>\n <path id='svg_52553b2cf052ba37_e319' d='M 192.922070 105.100393 L 193.197600 105.910025 L 192.606651 105.764559 L 192.407924 105.343418 L 192.922070 105.100393 Z ' fill='#3A649E' fill-opacity='1' fill-rule='evenodd' stroke='#FFFFFF' stroke-opacity='1' stroke-width='0.21' stroke-linejoin='round' stroke-linecap='butt' title='Western Isles&amp;lt;br/&amp;gt;Winter Year: 2020&amp;lt;br/&amp;gt;Items per Head: 14.63'/>\n <path id='svg_52553b2cf052ba37_e320' d='M 193.086322 111.167787 L 193.102543 111.702360 L 192.837165 111.287372 L 193.086322 111.167787 Z ' fill='#3A649E' fill-opacity='1' fill-rule='evenodd' stroke='#FFFFFF' stroke-opacity='1' stroke-width='0.21' stroke-linejoin='round' stroke-linecap='butt' title='Western Isles&amp;lt;br/&amp;gt;Winter Year: 2020&amp;lt;br/&amp;gt;Items per Head: 14.63'/>\n <path id='svg_52553b2cf052ba37_e321' d='M 189.011731 119.052244 L 189.494776 119.359257 L 189.244625 119.045888 L 188.516371 118.813219 L 188.493709 117.762593 L 189.476862 117.250397 L 189.600099 117.313015 L 189.441280 117.103248 L 190.212294 117.125809 L 189.429897 117.073613 L 189.734160 116.625178 L 189.428892 116.219213 L 189.410005 117.039264 L 188.955846 117.285466 L 189.003221 116.695335 L 188.564852 116.121920 L 188.837102 115.769074 L 188.535423 116.088493 L 188.178474 115.548997 L 188.624532 115.449123 L 189.526574 115.939704 L 188.609868 115.415099 L 187.734877 115.553571 L 187.065400 114.565414 L 187.471714 114.442180 L 187.818654 113.381998 L 188.384379 113.346395 L 188.926415 113.818929 L 188.450109 113.396722 L 189.284903 113.265920 L 189.257095 113.461046 L 189.683792 113.332675 L 190.076323 112.697530 L 190.201599 113.407898 L 190.340984 113.318524 L 190.539484 113.709845 L 190.389794 113.267048 L 190.696989 113.429024 L 190.759048 112.943631 L 191.383509 113.000111 L 191.659639 112.753652 L 191.553441 112.963852 L 192.017444 113.584005 L 191.594561 113.858819 L 192.224476 114.155062 L 192.636675 113.963534 L 191.970480 113.737717 L 192.436020 113.642864 L 193.077524 114.239045 L 192.555584 114.943508 L 192.179829 114.497697 L 192.429847 114.373312 L 192.024723 114.574665 L 191.791441 114.307542 L 191.852761 114.612298 L 191.419727 114.184184 L 191.825177 114.063492 L 191.158859 114.126556 L 191.520258 114.324155 L 191.354345 114.571321 L 191.936538 114.745601 L 191.557624 114.784138 L 191.928028 114.878435 L 191.525140 115.205504 L 192.518157 115.252569 L 192.278311 115.876128 L 190.558522 116.027748 L 191.980631 116.104489 L 192.026570 116.605202 L 191.573557 117.018263 L 190.881585 116.864326 L 191.202542 117.157596 L 190.505564 117.125192 L 190.240676 116.833523 L 190.379334 117.196459 L 190.984537 117.161596 L 191.047191 117.926661 L 190.282371 117.405215 L 189.917292 117.474187 L 190.396337 117.717598 L 190.275274 118.010541 L 190.508887 117.793234 L 191.065648 118.208038 L 190.642663 118.154920 L 190.830725 118.520687 L 190.451934 118.309554 L 190.423018 118.636457 L 190.262745 118.365542 L 190.112314 118.630511 L 190.996842 118.946750 L 190.562680 119.242379 L 191.028528 119.285446 L 190.478595 119.305545 L 190.617027 119.583434 L 189.603932 119.071789 L 190.222445 119.597995 L 189.838888 119.577967 L 189.862009 119.592662 L 189.438634 119.605296 L 190.074476 119.998730 L 189.685535 120.131520 L 190.441474 120.694580 L 189.988239 120.663590 L 190.117688 120.856923 L 190.628615 120.727699 L 190.124663 121.123845 L 190.503616 121.296912 L 190.556835 121.805315 L 190.899632 121.890015 L 190.072427 122.723989 L 189.828786 123.531508 L 189.459177 123.473414 L 189.884570 123.861898 L 190.006594 124.931514 L 189.688099 125.229092 L 189.059126 124.848331 L 189.419746 125.262314 L 188.956441 124.968183 L 188.683351 125.129852 L 188.838538 125.462559 L 189.944555 125.561635 L 189.974130 125.940200 L 190.336882 126.014153 L 190.093550 126.501330 L 189.474504 126.164069 L 188.285098 126.178056 L 187.824765 125.529766 L 187.863978 123.552550 L 187.487115 122.959036 L 187.915741 122.697594 L 187.805139 121.929923 L 188.327510 121.557429 L 188.098409 119.650168 L 189.011731 119.052244 Z M 190.517962 116.025559 L 190.601707 115.647848 L 190.016931 115.998522 L 190.517962 116.025559 Z M 189.433401 123.449875 L 189.589453 123.426812 L 189.423334 123.189940 L 188.858245 123.340861 L 188.708535 123.042873 L 188.818091 123.375972 L 189.333816 123.358930 L 189.433401 123.449875 Z ' fill='#3A649E' fill-opacity='1' fill-rule='evenodd' stroke='#FFFFFF' stroke-opacity='1' stroke-width='0.21' stroke-linejoin='round' stroke-linecap='butt' title='Western Isles&amp;lt;br/&amp;gt;Winter Year: 2020&amp;lt;br/&amp;gt;Items per Head: 14.63'/>\n <path id='svg_52553b2cf052ba37_e322' d='M 191.686235 112.701010 L 191.122456 112.546382 L 191.542162 111.943845 L 192.025155 111.891754 L 192.462989 112.640209 L 191.868737 112.339782 L 191.686235 112.701010 Z ' fill='#3A649E' fill-opacity='1' fill-rule='evenodd' stroke='#FFFFFF' stroke-opacity='1' stroke-width='0.21' stroke-linejoin='round' stroke-linecap='butt' title='Western Isles&amp;lt;br/&amp;gt;Winter Year: 2020&amp;lt;br/&amp;gt;Items per Head: 14.63'/>\n <path id='svg_52553b2cf052ba37_e323' d='M 191.349792 117.250909 L 191.650958 117.547665 L 191.321491 118.043273 L 191.030189 117.526625 L 191.410395 117.532592 L 191.150348 117.337660 L 191.349792 117.250909 Z ' fill='#3A649E' fill-opacity='1' fill-rule='evenodd' stroke='#FFFFFF' stroke-opacity='1' stroke-width='0.21' stroke-linejoin='round' stroke-linecap='butt' title='Western Isles&amp;lt;br/&amp;gt;Winter Year: 2020&amp;lt;br/&amp;gt;Items per Head: 14.63'/>\n <path id='svg_52553b2cf052ba37_e324' d='M 191.286832 110.775276 L 191.640909 111.133250 L 191.066982 111.364894 L 190.790016 111.063521 L 191.286832 110.775276 Z ' fill='#3A649E' fill-opacity='1' fill-rule='evenodd' stroke='#FFFFFF' stroke-opacity='1' stroke-width='0.21' stroke-linejoin='round' stroke-linecap='butt' title='Western Isles&amp;lt;br/&amp;gt;Winter Year: 2020&amp;lt;br/&amp;gt;Items per Head: 14.63'/>\n <path id='svg_52553b2cf052ba37_e325' d='M 191.123379 119.351483 L 191.114458 119.718685 L 190.721619 119.793132 L 190.904247 119.898853 L 190.539915 119.753550 L 191.123379 119.351483 Z ' fill='#3A649E' fill-opacity='1' fill-rule='evenodd' stroke='#FFFFFF' stroke-opacity='1' stroke-width='0.21' stroke-linejoin='round' stroke-linecap='butt' title='Western Isles&amp;lt;br/&amp;gt;Winter Year: 2020&amp;lt;br/&amp;gt;Items per Head: 14.63'/>\n <path id='svg_52553b2cf052ba37_e326' d='M 190.450602 112.196305 L 190.523407 112.681942 L 190.277818 112.504546 L 190.450602 112.196305 Z ' fill='#3A649E' fill-opacity='1' fill-rule='evenodd' stroke='#FFFFFF' stroke-opacity='1' stroke-width='0.21' stroke-linejoin='round' stroke-linecap='butt' title='Western Isles&amp;lt;br/&amp;gt;Winter Year: 2020&amp;lt;br/&amp;gt;Items per Head: 14.63'/>\n <path id='svg_52553b2cf052ba37_e327' d='M 190.235345 119.493483 L 190.491577 119.567600 L 190.282391 119.820593 L 190.235345 119.493483 Z ' fill='#3A649E' fill-opacity='1' fill-rule='evenodd' stroke='#FFFFFF' stroke-opacity='1' stroke-width='0.21' stroke-linejoin='round' stroke-linecap='butt' title='Western Isles&amp;lt;br/&amp;gt;Winter Year: 2020&amp;lt;br/&amp;gt;Items per Head: 14.63'/>\n <path id='svg_52553b2cf052ba37_e328' d='M 188.985480 126.403814 L 189.587197 126.567162 L 189.219051 127.423409 L 188.985480 126.403814 Z ' fill='#3A649E' fill-opacity='1' fill-rule='evenodd' stroke='#FFFFFF' stroke-opacity='1' stroke-width='0.21' stroke-linejoin='round' stroke-linecap='butt' title='Western Isles&amp;lt;br/&amp;gt;Winter Year: 2020&amp;lt;br/&amp;gt;Items per Head: 14.63'/>\n <path id='svg_52553b2cf052ba37_e329' d='M 188.779741 127.990631 L 188.814645 128.252955 L 188.470207 128.107753 L 188.779741 127.990631 Z ' fill='#3A649E' fill-opacity='1' fill-rule='evenodd' stroke='#FFFFFF' stroke-opacity='1' stroke-width='0.21' stroke-linejoin='round' stroke-linecap='butt' title='Western Isles&amp;lt;br/&amp;gt;Winter Year: 2020&amp;lt;br/&amp;gt;Items per Head: 14.63'/>\n <path id='svg_52553b2cf052ba37_e330' d='M 188.428369 128.118214 L 188.672111 128.441119 L 188.275787 128.272231 L 188.428369 128.118214 Z ' fill='#3A649E' fill-opacity='1' fill-rule='evenodd' stroke='#FFFFFF' stroke-opacity='1' stroke-width='0.21' stroke-linejoin='round' stroke-linecap='butt' title='Western Isles&amp;lt;br/&amp;gt;Winter Year: 2020&amp;lt;br/&amp;gt;Items per Head: 14.63'/>\n <path id='svg_52553b2cf052ba37_e331' d='M 188.034505 127.100484 L 188.236307 127.353045 L 187.899149 127.551567 L 188.034505 127.100484 Z ' fill='#3A649E' fill-opacity='1' fill-rule='evenodd' stroke='#FFFFFF' stroke-opacity='1' stroke-width='0.21' stroke-linejoin='round' stroke-linecap='butt' title='Western Isles&amp;lt;br/&amp;gt;Winter Year: 2020&amp;lt;br/&amp;gt;Items per Head: 14.63'/>\n <path id='svg_52553b2cf052ba37_e332' d='M 187.275796 127.110635 L 187.622410 127.306471 L 187.482213 128.070449 L 187.906431 128.471368 L 187.453009 128.206133 L 187.721896 128.448666 L 187.417633 128.440914 L 188.033788 128.989307 L 187.536479 128.668803 L 187.701858 128.966318 L 187.213512 129.325707 L 187.247906 129.648038 L 186.659005 129.740223 L 186.406159 129.369082 L 186.394447 129.628146 L 186.056900 129.578229 L 185.936249 129.761286 L 186.644957 129.996886 L 186.206057 129.905541 L 185.979789 130.154370 L 186.342357 130.298770 L 185.760943 130.430025 L 185.830978 129.994324 L 185.389125 129.822463 L 185.586519 129.493816 L 186.049455 129.579397 L 185.675320 129.340616 L 186.333210 128.860228 L 186.465079 128.274673 L 186.208949 128.085297 L 187.051435 127.959992 L 187.275796 127.110635 Z ' fill='#3A649E' fill-opacity='1' fill-rule='evenodd' stroke='#FFFFFF' stroke-opacity='1' stroke-width='0.21' stroke-linejoin='round' stroke-linecap='butt' title='Western Isles&amp;lt;br/&amp;gt;Winter Year: 2020&amp;lt;br/&amp;gt;Items per Head: 14.63'/>\n <path id='svg_52553b2cf052ba37_e333' d='M 186.030321 130.610601 L 186.469816 131.025487 L 185.920293 130.950117 L 186.030321 130.610601 Z ' fill='#3A649E' fill-opacity='1' fill-rule='evenodd' stroke='#FFFFFF' stroke-opacity='1' stroke-width='0.21' stroke-linejoin='round' stroke-linecap='butt' title='Western Isles&amp;lt;br/&amp;gt;Winter Year: 2020&amp;lt;br/&amp;gt;Items per Head: 14.63'/>\n <path id='svg_52553b2cf052ba37_e334' d='M 185.727105 116.043478 L 185.914756 116.352642 L 186.346048 116.238820 L 186.062827 116.686927 L 185.986432 116.387814 L 185.281559 116.387197 L 185.727105 116.043478 Z ' fill='#3A649E' fill-opacity='1' fill-rule='evenodd' stroke='#FFFFFF' stroke-opacity='1' stroke-width='0.21' stroke-linejoin='round' stroke-linecap='butt' title='Western Isles&amp;lt;br/&amp;gt;Winter Year: 2020&amp;lt;br/&amp;gt;Items per Head: 14.63'/>\n <path id='svg_52553b2cf052ba37_e335' d='M 185.326369 131.499538 L 185.657580 131.819263 L 185.037817 131.748511 L 185.326369 131.499538 Z ' fill='#3A649E' fill-opacity='1' fill-rule='evenodd' stroke='#FFFFFF' stroke-opacity='1' stroke-width='0.21' stroke-linejoin='round' stroke-linecap='butt' title='Western Isles&amp;lt;br/&amp;gt;Winter Year: 2020&amp;lt;br/&amp;gt;Items per Head: 14.63'/>\n <path id='svg_52553b2cf052ba37_e336' d='M 184.357758 133.049256 L 184.750186 133.219783 L 184.135139 133.140724 L 184.357758 133.049256 Z ' fill='#3A649E' fill-opacity='1' fill-rule='evenodd' stroke='#FFFFFF' stroke-opacity='1' stroke-width='0.21' stroke-linejoin='round' stroke-linecap='butt' title='Western Isles&amp;lt;br/&amp;gt;Winter Year: 2020&amp;lt;br/&amp;gt;Items per Head: 14.63'/>\n <path id='svg_52553b2cf052ba37_e337' d='M 184.679246 132.172132 L 184.657283 132.787364 L 184.094737 132.805513 L 184.221992 132.293727 L 184.679246 132.172132 Z ' fill='#3A649E' fill-opacity='1' fill-rule='evenodd' stroke='#FFFFFF' stroke-opacity='1' stroke-width='0.21' stroke-linejoin='round' stroke-linecap='butt' title='Western Isles&amp;lt;br/&amp;gt;Winter Year: 2020&amp;lt;br/&amp;gt;Items per Head: 14.63'/>\n <path id='svg_52553b2cf052ba37_e338' d='M 174.521205 108.326058 L 175.129485 108.446136 L 175.285555 108.758377 L 174.972391 108.951361 L 175.225772 109.182286 L 174.541714 108.756837 L 174.521205 108.326058 Z ' fill='#3A649E' fill-opacity='1' fill-rule='evenodd' stroke='#FFFFFF' stroke-opacity='1' stroke-width='0.21' stroke-linejoin='round' stroke-linecap='butt' title='Western Isles&amp;lt;br/&amp;gt;Winter Year: 2020&amp;lt;br/&amp;gt;Items per Head: 14.63'/>\n <path id='svg_52553b2cf052ba37_e339' d='M 243.748331 143.575136 L 246.122836 143.776282 L 245.215954 143.843038 L 245.106226 144.069504 L 244.812246 143.727781 L 244.878112 146.011899 L 246.670123 146.667907 L 247.597451 147.554999 L 247.345218 148.010120 L 244.740877 149.752617 L 243.959608 149.661992 L 243.023214 149.045037 L 240.348447 151.251066 L 240.050603 152.456980 L 238.714213 152.554581 L 238.156733 153.062182 L 237.344723 153.231562 L 237.235864 153.685720 L 236.298178 153.525181 L 236.301849 153.175123 L 235.950726 153.040218 L 233.182315 152.447219 L 232.813554 151.972509 L 233.121036 151.374362 L 234.250168 151.233940 L 233.809196 150.934230 L 234.875306 150.589238 L 235.040315 150.142135 L 236.968866 150.655028 L 237.567670 150.497708 L 237.553088 150.073636 L 237.891456 149.885287 L 238.513230 149.951201 L 238.359295 149.611992 L 238.977070 149.376166 L 238.937181 148.829351 L 238.616715 148.710914 L 238.750799 148.511018 L 237.641048 148.354641 L 237.828310 148.004152 L 237.448783 147.688159 L 238.069244 147.228463 L 238.599982 147.255617 L 238.522992 146.677053 L 239.099566 146.091415 L 238.838330 145.840371 L 243.748331 143.575136 Z ' fill='#271D34' fill-opacity='1' fill-rule='evenodd' stroke='#FFFFFF' stroke-opacity='1' stroke-width='0.21' stroke-linejoin='round' stroke-linecap='butt' title='Fife&amp;lt;br/&amp;gt;Winter Year: 2020&amp;lt;br/&amp;gt;Items per Head: 19.52'/>\n <path id='svg_52553b2cf052ba37_e340' d='M 244.122035 131.551014 L 245.481948 132.036961 L 246.448201 133.068022 L 246.761467 133.741108 L 246.634172 134.731643 L 247.301638 136.080932 L 248.378822 136.048939 L 249.226435 136.915399 L 249.740518 136.765298 L 249.510640 138.299081 L 248.797870 138.840379 L 248.721107 139.520992 L 249.003754 139.709650 L 248.267276 141.012939 L 246.141313 142.587081 L 245.824808 143.413510 L 244.807405 143.062344 L 242.002510 143.598043 L 242.255871 143.711783 L 241.393391 143.913175 L 241.418206 144.369078 L 241.102479 144.529145 L 241.336684 144.570163 L 240.998050 144.561263 L 241.228913 144.651170 L 238.988512 145.558525 L 239.512584 145.550957 L 238.838330 145.840371 L 239.099566 146.091415 L 238.522992 146.677053 L 238.599982 147.255617 L 238.069244 147.228463 L 237.448783 147.688159 L 237.828310 148.004152 L 237.641048 148.354641 L 238.750799 148.511018 L 238.977070 149.376166 L 238.359295 149.611992 L 238.513230 149.951201 L 237.553088 150.073636 L 237.567670 150.497708 L 235.400730 150.437804 L 235.102415 150.126261 L 234.875306 150.589238 L 234.121847 150.702547 L 234.033824 150.104441 L 234.737899 149.815004 L 234.978852 149.295056 L 234.436795 149.065034 L 233.806817 149.437835 L 232.917674 149.406251 L 232.373587 148.748854 L 231.654255 149.223420 L 231.535511 148.527055 L 231.198660 148.780848 L 230.860415 148.322997 L 230.352420 148.447790 L 229.558295 147.353463 L 229.144475 147.474317 L 228.638902 146.984003 L 228.203305 147.191343 L 227.256943 146.614441 L 226.651228 146.024004 L 226.651536 144.763455 L 227.212439 144.728898 L 227.193572 143.103503 L 227.691619 143.418410 L 228.505804 142.972660 L 227.832204 141.925193 L 226.008392 142.671187 L 225.624268 141.196632 L 225.204359 140.997804 L 224.732256 141.438119 L 223.588707 141.743182 L 223.389775 141.475546 L 223.108296 141.887151 L 222.493250 141.856900 L 221.760895 142.572233 L 221.148206 142.234460 L 221.546786 141.345728 L 221.031513 140.754984 L 222.274118 140.216124 L 222.770830 140.318360 L 221.863847 139.137075 L 221.961262 138.413539 L 221.516332 138.744134 L 220.873804 138.661074 L 220.878212 137.878269 L 221.629846 137.949945 L 222.469254 137.560696 L 222.553749 136.039689 L 223.104297 135.775030 L 223.461246 135.036622 L 224.420528 135.789283 L 225.313566 134.485973 L 225.854476 134.694851 L 226.207835 134.079291 L 227.529294 133.687682 L 227.870555 132.755883 L 228.338146 133.101244 L 230.135401 133.295870 L 230.839454 132.001994 L 231.357806 132.604223 L 232.278428 132.275986 L 232.759043 132.637653 L 233.299541 132.411137 L 233.667668 132.877908 L 234.112699 132.458102 L 235.263222 132.517678 L 235.518756 133.595374 L 235.811924 133.415843 L 236.701271 133.879436 L 237.156250 133.575400 L 237.871686 133.862518 L 238.976679 133.138366 L 238.993394 132.652521 L 241.024239 133.604112 L 241.513980 132.013992 L 244.122035 131.551014 Z ' fill='#3B3B6C' fill-opacity='1' fill-rule='evenodd' stroke='#FFFFFF' stroke-opacity='1' stroke-width='0.21' stroke-linejoin='round' stroke-linecap='butt' title='Tayside&amp;lt;br/&amp;gt;Winter Year: 2020&amp;lt;br/&amp;gt;Items per Head: 17.11'/>\n <path id='svg_52553b2cf052ba37_e341' d='M 222.025864 151.717755 L 223.413237 152.035922 L 223.102554 152.335488 L 223.284177 153.166735 L 224.126130 154.114572 L 224.742939 153.928683 L 225.125443 154.421378 L 225.749001 154.479519 L 225.921231 153.675692 L 225.673489 152.926519 L 226.918082 153.321882 L 227.384096 152.875864 L 227.984253 154.112009 L 227.837536 154.653391 L 228.766486 154.425829 L 228.491405 154.882757 L 228.650551 155.353608 L 226.893247 155.536995 L 227.258030 156.223145 L 228.316080 156.242565 L 228.381255 157.158861 L 228.021271 157.188864 L 227.903491 157.560334 L 227.110370 157.603032 L 226.725980 157.102791 L 226.366304 157.231050 L 226.685784 158.104032 L 225.656098 158.788214 L 226.406050 159.852436 L 226.383491 160.582207 L 226.010340 160.908805 L 224.691956 160.391991 L 224.308675 159.794889 L 224.093520 160.001778 L 223.616167 159.495158 L 223.233746 159.539333 L 223.379706 159.125454 L 222.938180 158.841925 L 222.440810 159.235850 L 221.941511 158.328414 L 221.353617 158.808229 L 221.145007 158.467995 L 220.778481 158.827323 L 220.501268 157.810393 L 220.055826 157.761685 L 220.045570 157.402993 L 219.274864 156.938067 L 219.704844 156.727344 L 219.118386 155.724688 L 217.919915 156.057477 L 218.150121 154.540348 L 219.240574 153.911867 L 220.489988 154.403742 L 220.627251 154.801296 L 221.511389 154.794897 L 221.552528 153.654979 L 221.007620 153.282443 L 221.768769 152.912081 L 221.547300 152.226056 L 221.866492 151.453319 L 222.025864 151.717755 Z ' fill='#302446' fill-opacity='1' fill-rule='evenodd' stroke='#FFFFFF' stroke-opacity='1' stroke-width='0.21' stroke-linejoin='round' stroke-linecap='butt' title='Greater Glasgow and Clyde&amp;lt;br/&amp;gt;Winter Year: 2020&amp;lt;br/&amp;gt;Items per Head: 18.78'/>\n <path id='svg_52553b2cf052ba37_e342' d='M 228.823704 152.910913 L 229.204770 152.982487 L 229.061888 153.396368 L 229.596605 153.456334 L 229.589078 153.978478 L 230.128859 154.050462 L 230.211282 154.498634 L 231.204340 154.610075 L 230.634452 155.080826 L 231.828534 155.870235 L 231.638832 156.342811 L 232.410009 156.618014 L 233.060803 156.420210 L 232.555845 156.934438 L 232.981928 157.971487 L 232.598770 158.723531 L 234.567781 158.096998 L 235.024442 158.667379 L 236.250496 159.152565 L 236.480293 160.106454 L 236.738064 160.420457 L 237.031682 160.294823 L 235.848327 161.806047 L 235.884484 162.550974 L 235.257909 162.652306 L 235.770703 163.776085 L 235.772651 164.817604 L 235.049524 166.488731 L 235.451796 167.203224 L 234.514358 167.805782 L 234.543991 169.098838 L 234.100087 169.153697 L 233.671975 169.921943 L 232.756172 169.175436 L 232.780126 168.260782 L 232.232900 167.980002 L 231.340988 166.370604 L 230.443335 165.996223 L 229.475749 166.092509 L 228.878133 165.650655 L 228.776206 165.202547 L 229.686062 163.752398 L 228.663206 162.917193 L 228.103633 163.466819 L 227.251919 163.323157 L 226.256850 163.804694 L 226.016902 163.526190 L 226.922247 162.579583 L 226.538247 162.338547 L 226.048281 160.967971 L 226.383491 160.582207 L 226.379737 159.721552 L 225.657102 158.782144 L 226.685784 158.104032 L 226.320448 157.676349 L 226.416058 157.173258 L 226.733938 157.107713 L 227.110370 157.603032 L 227.903491 157.560334 L 228.021271 157.188864 L 228.381255 157.158861 L 228.316080 156.242565 L 227.258030 156.223145 L 226.893247 155.536995 L 228.650551 155.353608 L 228.491405 154.882757 L 228.763307 154.419266 L 227.837536 154.653391 L 227.984253 154.112009 L 227.494226 153.424054 L 228.823704 152.910913 Z ' fill='#34274D' fill-opacity='1' fill-rule='evenodd' stroke='#FFFFFF' stroke-opacity='1' stroke-width='0.21' stroke-linejoin='round' stroke-linecap='butt' title='Lanarkshire&amp;lt;br/&amp;gt;Winter Year: 2020&amp;lt;br/&amp;gt;Items per Head: 18.49'/>\n <\/g>\n <g clip-path='url(#svg_52553b2cf052ba37_c6)'>\n <path id='svg_52553b2cf052ba37_e343' d='M 212.996625 327.974751 L 214.263532 329.007554 L 214.629094 330.617670 L 214.288983 331.239300 L 215.146009 331.936976 L 214.562606 332.405757 L 215.154959 332.918812 L 215.043057 334.172290 L 214.622101 334.533566 L 212.772620 334.465249 L 211.556935 332.834629 L 211.763905 331.684476 L 211.189014 329.998828 L 211.628201 328.895066 L 212.996625 327.974751 Z ' fill='#0F080D' fill-opacity='1' fill-rule='evenodd' stroke='#FFFFFF' stroke-opacity='1' stroke-width='0.21' stroke-linejoin='round' stroke-linecap='butt' title='Ayrshire and Arran&amp;lt;br/&amp;gt;Winter Year: 2023&amp;lt;br/&amp;gt;Items per Head: 21.21'/>\n <path id='svg_52553b2cf052ba37_e344' d='M 217.189344 327.852971 L 216.945233 328.421691 L 216.795050 328.141669 L 217.189344 327.852971 Z ' fill='#0F080D' fill-opacity='1' fill-rule='evenodd' stroke='#FFFFFF' stroke-opacity='1' stroke-width='0.21' stroke-linejoin='round' stroke-linecap='butt' title='Ayrshire and Arran&amp;lt;br/&amp;gt;Winter Year: 2023&amp;lt;br/&amp;gt;Items per Head: 21.21'/>\n <path id='svg_52553b2cf052ba37_e345' d='M 217.687636 326.548288 L 217.677300 327.466572 L 217.089836 327.685172 L 217.346028 326.725481 L 217.687636 326.548288 Z ' fill='#0F080D' fill-opacity='1' fill-rule='evenodd' stroke='#FFFFFF' stroke-opacity='1' stroke-width='0.21' stroke-linejoin='round' stroke-linecap='butt' title='Ayrshire and Arran&amp;lt;br/&amp;gt;Winter Year: 2023&amp;lt;br/&amp;gt;Items per Head: 21.21'/>\n <path id='svg_52553b2cf052ba37_e346' d='M 219.124845 324.405672 L 219.704844 325.335216 L 219.274864 325.545939 L 220.045570 326.010865 L 220.055826 326.369557 L 220.501268 326.418265 L 220.778481 327.435195 L 221.145007 327.075867 L 221.353617 327.416101 L 221.941511 326.936286 L 222.440810 327.843722 L 222.938180 327.449797 L 223.379706 327.733326 L 223.233746 328.147205 L 223.616167 328.103030 L 224.093520 328.609650 L 224.308675 328.402761 L 225.049110 329.220739 L 226.048281 329.464420 L 226.538247 330.946419 L 226.922247 331.187455 L 226.016902 332.134062 L 226.240854 332.407336 L 227.251919 331.931029 L 228.103633 332.074691 L 228.663206 331.525065 L 229.686062 332.360270 L 229.682986 332.709117 L 228.776206 333.810419 L 229.268921 334.473250 L 228.857318 334.848248 L 229.040150 335.093015 L 227.876913 335.619732 L 227.631139 336.594949 L 227.901727 337.009218 L 227.467359 338.176454 L 227.083032 338.526123 L 226.355044 337.715897 L 225.068696 337.852114 L 224.261792 339.023453 L 223.381674 341.604231 L 223.135716 341.727773 L 222.948229 340.958421 L 222.632810 341.366949 L 221.508948 341.210059 L 220.183285 342.155395 L 220.190360 342.741216 L 220.604016 343.043511 L 220.518596 343.609749 L 219.439855 343.884971 L 219.104234 343.647996 L 218.464475 343.994075 L 218.303894 343.682861 L 217.221973 343.764278 L 217.109382 343.257825 L 216.743716 343.120417 L 216.033613 344.339848 L 215.142215 344.618729 L 215.032536 343.384422 L 215.918438 341.310796 L 217.696455 339.472607 L 218.068937 338.155048 L 217.949611 337.304683 L 218.922118 336.472302 L 219.360891 335.124071 L 220.645801 334.524327 L 221.043428 333.470404 L 220.259084 332.285998 L 220.630272 332.166042 L 220.364723 331.181405 L 219.384749 330.382109 L 218.576092 330.170644 L 218.354845 329.466986 L 217.570903 328.686291 L 217.614419 327.980416 L 218.295523 327.004661 L 217.909865 325.973745 L 217.936547 324.693896 L 219.124845 324.405672 Z ' fill='#0F080D' fill-opacity='1' fill-rule='evenodd' stroke='#FFFFFF' stroke-opacity='1' stroke-width='0.21' stroke-linejoin='round' stroke-linecap='butt' title='Ayrshire and Arran&amp;lt;br/&amp;gt;Winter Year: 2023&amp;lt;br/&amp;gt;Items per Head: 21.21'/>\n <path id='svg_52553b2cf052ba37_e347' d='M 243.790599 342.890456 L 243.205309 341.392071 L 243.757396 339.968274 L 243.006274 339.950207 L 243.490068 339.363687 L 243.319438 338.886455 L 242.493154 338.721055 L 242.045455 339.198184 L 241.433485 339.133439 L 240.692720 337.294593 L 240.367867 337.103251 L 239.748412 337.388623 L 239.202374 336.709386 L 238.224862 337.463931 L 237.877060 337.322197 L 238.100457 336.286811 L 238.859782 335.485034 L 237.959975 335.120599 L 237.439061 335.846186 L 235.905340 336.015074 L 235.077210 335.277284 L 235.298598 334.026885 L 235.773368 333.410505 L 235.770703 332.383957 L 235.257909 331.260178 L 235.884484 331.158846 L 235.848327 330.413919 L 237.021961 329.035691 L 236.480293 328.714326 L 236.110220 327.562327 L 236.695529 326.742707 L 237.429628 326.449232 L 237.726795 327.165570 L 238.381033 327.102016 L 238.629123 327.585030 L 239.787890 327.003042 L 240.502506 329.100046 L 240.957586 328.839693 L 240.814951 328.495152 L 241.185025 327.984083 L 242.794771 326.656490 L 243.102459 327.249122 L 243.839839 326.552821 L 244.225089 326.704665 L 245.042657 326.105923 L 245.517427 326.478971 L 246.429231 326.069109 L 247.252542 326.487276 L 247.558117 326.103563 L 247.896710 326.252352 L 248.186801 325.554554 L 247.712237 325.039793 L 247.916090 324.599066 L 248.553082 324.594658 L 249.034518 325.227239 L 250.370454 323.814251 L 250.816637 324.152968 L 252.157353 324.132643 L 253.259660 324.496730 L 253.326148 325.070534 L 254.036149 325.494812 L 254.596747 326.906980 L 253.916195 327.331198 L 253.921548 328.038900 L 253.508838 328.569330 L 252.749430 329.022793 L 252.868401 329.315305 L 251.818575 330.542117 L 251.998106 330.796277 L 251.076704 330.655693 L 250.683865 330.993425 L 251.038250 331.070207 L 251.289519 332.179877 L 251.914697 332.745581 L 252.413564 334.581352 L 252.877486 334.739738 L 252.021792 335.649184 L 251.641505 335.545020 L 250.665223 336.105187 L 250.635998 337.041232 L 250.095827 337.449780 L 248.841942 337.314937 L 248.253003 338.034105 L 247.747922 338.148747 L 246.593422 339.458230 L 247.051209 339.757018 L 246.786076 340.289579 L 246.323776 340.333611 L 245.835266 341.432822 L 244.230934 342.211793 L 243.790599 342.890456 Z ' fill='#2B203D' fill-opacity='1' fill-rule='evenodd' stroke='#FFFFFF' stroke-opacity='1' stroke-width='0.21' stroke-linejoin='round' stroke-linecap='butt' title='Borders&amp;lt;br/&amp;gt;Winter Year: 2023&amp;lt;br/&amp;gt;Items per Head: 19.15'/>\n <path id='svg_52553b2cf052ba37_e348' d='M 229.417812 334.618021 L 231.340988 334.978476 L 232.232900 336.587874 L 232.780126 336.868654 L 232.756172 337.783308 L 233.611987 338.543454 L 233.945248 338.437691 L 234.100087 337.761569 L 234.543991 337.706710 L 234.493132 336.479075 L 234.893865 336.102029 L 235.450565 335.811219 L 237.439061 335.846186 L 237.959975 335.120599 L 238.859782 335.485034 L 238.100457 336.286811 L 237.853947 337.296253 L 238.224862 337.463931 L 239.202374 336.709386 L 239.748412 337.388623 L 240.367867 337.103251 L 240.692720 337.294593 L 241.433485 339.133439 L 242.045455 339.198184 L 242.493154 338.721055 L 243.319438 338.886455 L 243.490068 339.363687 L 243.006274 339.950207 L 243.757396 339.968274 L 243.205309 341.392071 L 243.802637 342.876941 L 242.463068 344.221145 L 241.254446 344.123667 L 241.577207 344.500920 L 241.325631 345.362991 L 239.949468 346.394517 L 238.045106 346.104330 L 237.078086 346.367853 L 236.449838 347.015580 L 235.840432 347.133400 L 235.956718 346.873492 L 235.595355 346.980818 L 235.749008 346.483167 L 235.400817 347.206388 L 234.651292 347.452961 L 233.533645 348.730288 L 232.753197 348.490442 L 231.987413 348.725161 L 232.151583 348.390464 L 231.890027 348.363741 L 228.930183 350.342126 L 228.014286 350.292809 L 227.562141 349.592966 L 227.416808 350.373198 L 226.968064 349.950403 L 226.632234 350.071651 L 225.423077 348.722052 L 224.418546 348.409030 L 224.605643 348.709704 L 223.603686 347.797752 L 224.169094 349.500092 L 223.799738 350.816034 L 224.003058 351.511659 L 223.381087 352.258567 L 221.463668 351.233091 L 220.720769 349.976748 L 219.312420 348.789672 L 218.515274 348.610929 L 217.883164 348.034532 L 217.253351 348.145183 L 216.116795 349.150936 L 216.662196 351.439080 L 217.155833 351.888399 L 216.955794 352.853647 L 217.266066 352.945217 L 216.345443 352.765072 L 215.796720 352.252587 L 215.726869 351.683171 L 216.052460 351.456266 L 215.932753 350.795382 L 215.510013 350.640257 L 215.419913 349.765138 L 213.579597 347.680606 L 213.142337 346.382424 L 213.449514 344.478425 L 214.441736 344.134441 L 215.031318 345.254032 L 214.672759 345.408854 L 214.682539 346.007044 L 215.219388 346.711378 L 215.702515 346.276340 L 215.142215 344.618729 L 216.033613 344.339848 L 216.606413 343.156614 L 217.030015 343.176712 L 217.221973 343.764278 L 218.303894 343.682861 L 218.464475 343.994075 L 219.104234 343.647996 L 219.439855 343.884971 L 220.518596 343.609749 L 220.256397 342.033165 L 221.508948 341.210059 L 222.632810 341.366949 L 222.942896 340.958421 L 223.135716 341.727773 L 223.381674 341.604231 L 224.261792 339.023453 L 225.060082 337.860317 L 226.355044 337.715897 L 227.158093 338.509307 L 227.901727 337.009218 L 227.631139 336.594949 L 227.876913 335.619732 L 229.417812 334.618021 Z ' fill='#1A131E' fill-opacity='1' fill-rule='evenodd' stroke='#FFFFFF' stroke-opacity='1' stroke-width='0.21' stroke-linejoin='round' stroke-linecap='butt' title='Dumfries and Galloway&amp;lt;br/&amp;gt;Winter Year: 2023&amp;lt;br/&amp;gt;Items per Head: 20.47'/>\n <path id='svg_52553b2cf052ba37_e349' d='M 225.580586 309.904995 L 226.008392 311.279059 L 227.832204 310.533065 L 228.400492 311.051620 L 228.505804 311.580532 L 228.052362 311.596733 L 227.717972 312.020439 L 227.193572 311.711375 L 227.212439 313.336770 L 226.651536 313.371327 L 226.651228 314.631876 L 227.256943 315.222313 L 228.203305 315.799215 L 228.638902 315.591875 L 229.144475 316.082189 L 229.558295 315.961335 L 230.352420 317.055662 L 230.860415 316.930869 L 231.198660 317.388720 L 231.535511 317.134927 L 231.654255 317.831292 L 232.373587 317.356726 L 232.917674 318.014123 L 233.806817 318.045707 L 234.436795 317.672906 L 234.996038 317.922061 L 234.735192 318.425154 L 234.033824 318.712313 L 234.266594 319.367637 L 233.808971 319.544708 L 234.250168 319.841812 L 233.152168 319.951162 L 232.728013 320.702919 L 233.284879 321.439704 L 235.825233 322.273557 L 235.687377 322.534198 L 235.280243 322.712231 L 234.557712 322.443119 L 233.664550 323.595856 L 232.740810 323.854877 L 232.354308 324.422039 L 231.663298 324.688156 L 231.826934 324.476303 L 230.634452 323.688698 L 231.204340 323.217947 L 230.239358 323.121784 L 230.128859 322.658334 L 229.620947 322.636062 L 229.596605 322.064206 L 229.061888 322.004240 L 229.204770 321.590359 L 228.231195 321.574281 L 227.703514 322.042897 L 227.384096 321.483736 L 226.918082 321.929754 L 225.743218 321.506194 L 225.930685 322.920638 L 225.179257 323.058044 L 224.742939 322.536555 L 224.126130 322.722444 L 223.720371 321.959839 L 223.424947 321.990601 L 223.102554 320.943360 L 223.411451 320.642030 L 221.936753 320.272406 L 221.988394 319.456705 L 221.366209 319.171721 L 220.726615 317.368806 L 220.774132 315.672575 L 221.247465 315.537836 L 220.985574 315.146125 L 221.306736 314.608087 L 219.694119 314.503001 L 219.745841 314.045233 L 218.868080 313.398911 L 219.453699 312.347957 L 220.458712 312.008133 L 220.573457 311.433078 L 221.339447 311.452252 L 222.190668 310.628531 L 223.108296 310.495023 L 223.385161 310.084546 L 223.759952 310.333416 L 225.198924 309.605984 L 225.580586 309.904995 Z ' fill='#21192B' fill-opacity='1' fill-rule='evenodd' stroke='#FFFFFF' stroke-opacity='1' stroke-width='0.21' stroke-linejoin='round' stroke-linecap='butt' title='Forth Valley&amp;lt;br/&amp;gt;Winter Year: 2023&amp;lt;br/&amp;gt;Items per Head: 19.91'/>\n <path id='svg_52553b2cf052ba37_e350' d='M 238.596680 283.028149 L 239.413754 283.073267 L 240.647520 283.930827 L 242.439976 284.509246 L 244.652321 283.562640 L 244.925964 283.891634 L 245.342510 283.716842 L 245.957620 284.135399 L 246.291559 283.919075 L 248.002534 284.141181 L 248.768830 284.547596 L 250.774697 284.459575 L 251.393108 283.862820 L 252.674206 284.439476 L 253.579140 283.762987 L 254.977198 283.820697 L 255.189645 284.266037 L 255.748827 284.131994 L 256.516990 285.312335 L 257.248320 285.754310 L 257.421904 287.695001 L 257.919355 288.294012 L 257.596430 288.310397 L 257.551414 288.740787 L 257.838696 289.048556 L 256.780852 290.484044 L 256.762106 290.930983 L 255.340177 292.440915 L 254.508971 294.253244 L 254.115476 295.680751 L 254.475480 295.708684 L 254.798878 296.927130 L 254.533129 297.413097 L 254.115988 297.412257 L 252.474291 300.511179 L 252.569921 301.858233 L 252.116726 302.919358 L 251.103323 304.359746 L 249.648024 305.405394 L 249.226435 305.523271 L 248.378822 304.656811 L 247.301638 304.688804 L 246.634172 303.339515 L 246.761467 302.348980 L 246.448201 301.675894 L 245.481948 300.644833 L 244.740978 300.586897 L 244.637206 300.241536 L 243.901363 300.008559 L 243.126658 300.454822 L 242.227673 300.305418 L 241.513980 300.621864 L 241.019932 302.212701 L 238.993394 301.260393 L 238.976679 301.746238 L 237.898347 302.462184 L 237.156250 302.183272 L 236.701271 302.487308 L 235.811924 302.023715 L 235.518756 302.203246 L 235.263222 301.125550 L 234.112699 301.065974 L 233.667668 301.485780 L 233.299541 301.019009 L 232.762016 301.245730 L 232.568314 301.013061 L 233.240170 299.658480 L 233.152291 298.635520 L 233.473761 298.210997 L 233.270112 297.759504 L 233.704787 297.708746 L 234.473442 296.884616 L 234.931499 296.981209 L 235.972750 295.746706 L 237.016794 295.549724 L 237.319293 294.495797 L 236.904181 294.131977 L 237.105082 293.175628 L 236.565095 292.617532 L 237.940903 290.729222 L 237.622612 289.927035 L 236.912714 289.688728 L 236.533820 289.057889 L 234.583204 289.755338 L 234.086038 289.558600 L 234.253408 287.644161 L 233.872178 287.442359 L 234.017583 286.565871 L 233.416952 285.012297 L 235.021510 284.258224 L 236.288273 284.391322 L 236.714396 283.996822 L 236.708204 283.483642 L 238.596680 283.028149 Z ' fill='#3B518B' fill-opacity='1' fill-rule='evenodd' stroke='#FFFFFF' stroke-opacity='1' stroke-width='0.21' stroke-linejoin='round' stroke-linecap='butt' title='Grampian&amp;lt;br/&amp;gt;Winter Year: 2023&amp;lt;br/&amp;gt;Items per Head: 15.77'/>\n <path id='svg_52553b2cf052ba37_e351' d='M 216.325990 277.232969 L 216.265563 277.009710 L 214.872735 276.450138 L 214.305020 275.292089 L 213.607550 275.144696 L 213.717946 274.706780 L 213.195352 274.118474 L 213.639358 273.463703 L 214.404917 274.388940 L 214.661088 274.094849 L 215.088175 274.493738 L 215.531260 273.654534 L 215.125808 273.237289 L 215.620368 273.229906 L 215.185897 272.847015 L 215.907691 272.643716 L 215.085099 272.428747 L 215.471068 272.175467 L 215.067196 272.279425 L 215.175028 271.958488 L 214.034453 270.547202 L 214.413859 269.882524 L 215.190718 270.816581 L 215.996391 270.305612 L 215.555973 270.100940 L 215.781646 269.862179 L 216.008696 270.315253 L 216.745460 270.286336 L 216.989407 270.737109 L 216.939777 270.134777 L 217.449514 270.361703 L 217.322465 269.978812 L 217.625476 269.917389 L 218.228012 270.485061 L 218.832089 270.319866 L 219.654803 271.281853 L 218.977083 270.420152 L 219.848279 270.330634 L 218.241447 270.235576 L 217.624245 269.642167 L 217.331487 269.728814 L 217.423981 268.758048 L 217.025708 268.785427 L 216.759303 268.030718 L 217.157105 268.000569 L 216.916807 267.783078 L 217.371273 266.648348 L 218.810144 267.533326 L 218.215811 266.920393 L 218.690683 266.770578 L 217.940588 266.806263 L 217.712432 266.605588 L 218.218066 266.622200 L 217.686181 266.296834 L 218.227091 265.785558 L 218.718437 265.889844 L 218.184638 265.666713 L 218.462649 265.531850 L 217.648446 264.896109 L 217.954021 264.010249 L 218.636746 263.643557 L 219.062603 262.953450 L 219.215083 261.855430 L 219.806033 262.232271 L 220.760925 262.161025 L 221.373387 262.626443 L 221.393998 263.404635 L 221.762535 263.811830 L 221.262684 264.307641 L 221.697011 263.946468 L 221.416968 264.580013 L 221.849491 263.769828 L 221.427940 263.320243 L 222.001766 262.995493 L 221.748590 262.539487 L 222.047602 262.447199 L 222.392882 263.303037 L 223.361679 263.739333 L 222.071084 265.970996 L 223.166233 265.292023 L 223.470783 264.437131 L 223.757490 264.378375 L 223.710423 264.702653 L 224.246822 263.114852 L 225.212357 263.216369 L 225.717685 263.905697 L 225.946148 263.715952 L 226.116368 264.441746 L 226.514846 264.075979 L 226.287101 264.857144 L 226.084835 264.948597 L 226.107590 265.123753 L 226.881844 264.199541 L 227.535345 264.049727 L 228.153263 264.472508 L 228.278877 264.219947 L 228.586155 264.351426 L 228.595836 263.922164 L 229.046609 264.172675 L 229.660119 263.539786 L 230.297110 263.913551 L 230.963120 262.846499 L 231.110309 263.723952 L 231.951175 263.513206 L 232.197809 263.842777 L 233.789980 263.738820 L 235.335822 262.463730 L 236.734085 262.507290 L 236.553118 262.834685 L 236.843969 263.080254 L 237.636577 262.762742 L 238.690751 263.175331 L 238.913719 262.709298 L 238.194038 262.134509 L 238.643583 261.421984 L 239.437750 262.091810 L 240.880065 261.733303 L 241.200243 262.240702 L 242.834415 262.160594 L 242.590753 263.231401 L 242.238439 263.330846 L 242.303041 263.960639 L 241.532848 264.956917 L 241.638507 265.873684 L 242.498978 266.064227 L 241.733379 268.361867 L 240.344345 269.849773 L 238.289177 270.722856 L 236.827912 272.820764 L 234.350659 274.827348 L 233.196015 275.382532 L 232.689867 276.562359 L 230.984675 277.298509 L 230.547640 279.369222 L 230.608018 279.781729 L 230.673029 279.532142 L 231.173743 279.755170 L 229.317341 280.014355 L 228.109766 279.408661 L 227.241829 279.686735 L 226.601310 279.197362 L 227.150463 279.724941 L 228.387345 279.640918 L 228.801698 280.292265 L 229.011970 280.072763 L 230.296085 280.372781 L 230.091821 280.526697 L 231.398001 279.893499 L 232.366512 280.568740 L 232.957256 279.843048 L 233.470397 279.704125 L 230.895443 283.568094 L 230.141779 283.551934 L 230.075517 283.025443 L 229.784707 282.937050 L 228.599916 283.699103 L 227.218674 283.811119 L 225.562047 285.706650 L 227.928860 283.928961 L 228.653873 283.894076 L 229.130674 284.257053 L 230.116246 283.781628 L 230.645241 283.955395 L 229.282538 285.513912 L 229.387296 286.279840 L 228.442575 286.412405 L 227.567175 287.901685 L 225.580566 287.860237 L 226.687118 287.966533 L 225.850682 288.183142 L 226.957787 288.253773 L 227.721827 287.929987 L 228.280394 288.116634 L 229.871376 286.672597 L 229.550153 286.083286 L 230.168400 285.625067 L 232.097789 285.981770 L 233.413362 285.042136 L 234.017583 286.565871 L 233.872178 287.442359 L 234.253408 287.644161 L 234.086038 289.558600 L 234.583204 289.755338 L 236.532692 289.057582 L 236.791714 289.590799 L 237.726281 290.077977 L 237.863688 291.058792 L 236.539358 292.787650 L 237.105082 293.175628 L 236.904181 294.131977 L 237.319293 294.495797 L 237.205676 295.155696 L 237.014230 295.551672 L 235.938871 295.772712 L 234.889455 297.010436 L 234.473442 296.884616 L 233.704787 297.708746 L 233.270112 297.759504 L 233.473761 298.210997 L 233.152291 298.635520 L 233.240170 299.658480 L 232.540218 300.947434 L 231.370520 301.215581 L 230.687898 300.639910 L 230.443438 301.725627 L 229.747792 301.945783 L 229.608233 301.650729 L 228.645568 301.775872 L 227.870555 301.363755 L 227.529294 302.295554 L 226.207835 302.687163 L 225.854476 303.302723 L 225.313566 303.093845 L 224.420528 304.397155 L 223.461246 303.644494 L 223.104297 304.382902 L 222.553749 304.647561 L 222.469254 306.168568 L 221.629846 306.557817 L 220.878212 306.486140 L 220.873804 307.268946 L 221.516332 307.352006 L 221.961262 307.021411 L 221.863847 307.744947 L 222.769395 308.933102 L 222.274118 308.823996 L 221.034794 309.359061 L 221.555195 310.107927 L 221.105446 310.746866 L 221.687782 311.101045 L 221.339447 311.452252 L 220.569869 311.435538 L 220.458712 312.008133 L 219.453699 312.347957 L 218.867465 313.402294 L 219.745841 314.045233 L 219.694119 314.503001 L 221.306736 314.608087 L 220.985574 315.146125 L 221.247465 315.537836 L 220.774132 315.672575 L 220.726101 317.360377 L 221.366209 319.171721 L 222.002422 319.519543 L 221.531302 320.923549 L 221.768769 321.519953 L 221.007620 321.890315 L 221.552528 322.262851 L 221.511389 323.402769 L 220.779054 323.353733 L 220.619088 323.034070 L 221.160531 323.043360 L 220.430124 322.676075 L 220.218764 321.954076 L 219.343353 321.588821 L 218.879883 320.077052 L 218.915363 321.082489 L 219.643011 322.163016 L 218.707528 322.243579 L 218.367591 321.540292 L 218.244208 320.512778 L 220.006254 317.256809 L 218.520276 319.572469 L 218.206126 319.346951 L 218.074733 317.972009 L 217.880867 318.066317 L 217.932138 319.267331 L 218.349562 319.874374 L 217.838743 320.692645 L 217.964720 322.200468 L 217.250984 322.039910 L 217.808185 322.590821 L 216.794044 324.955659 L 215.948524 324.693221 L 215.728345 322.838932 L 215.051875 321.566590 L 215.574430 324.059285 L 214.302088 323.204187 L 214.230308 322.567298 L 213.461653 324.052025 L 213.906583 325.566961 L 212.499296 324.957964 L 212.538190 324.434516 L 212.031089 323.893167 L 212.382808 322.561146 L 212.167572 321.328283 L 212.639984 321.318233 L 214.195610 318.724939 L 215.527547 318.140039 L 216.090216 316.998855 L 217.853049 315.713242 L 216.383897 316.412006 L 216.208634 316.137163 L 215.331815 317.814166 L 213.775657 318.708969 L 212.913566 320.135616 L 212.435972 320.083225 L 212.266628 321.066390 L 211.544732 321.593867 L 210.978243 321.036138 L 210.876158 322.157848 L 211.457879 324.488321 L 211.197627 324.640370 L 211.581750 324.683356 L 212.123890 325.509435 L 212.370811 326.716560 L 211.329906 327.243421 L 210.586579 328.172144 L 210.081867 329.627729 L 210.319689 331.186087 L 209.863555 331.274862 L 209.854224 332.213737 L 208.963749 334.345894 L 208.258661 334.505998 L 208.563794 334.791090 L 209.104334 334.478993 L 208.902531 334.700792 L 209.284808 336.046349 L 208.113593 337.212764 L 207.046725 337.137683 L 206.023560 337.515058 L 205.510645 337.116580 L 205.578220 335.762307 L 205.783202 335.052101 L 206.814002 334.022810 L 206.968588 331.045578 L 207.602400 329.741140 L 207.615526 328.599745 L 208.403561 327.981108 L 209.070905 326.731428 L 210.273724 325.941958 L 210.859752 324.807636 L 208.751794 326.909031 L 208.489799 326.838175 L 208.640681 326.077175 L 208.221344 326.246507 L 207.911462 325.951801 L 207.990830 324.848551 L 209.119510 323.035095 L 208.785838 323.021457 L 207.837734 323.952129 L 207.748112 323.214544 L 209.405910 320.923549 L 209.029683 321.055931 L 209.459982 320.489212 L 208.899557 320.855974 L 209.339052 320.224520 L 208.699325 320.833546 L 208.846748 321.025168 L 208.341216 321.766650 L 208.538404 321.091000 L 208.295072 321.424262 L 207.697457 322.915223 L 207.508882 322.799556 L 207.852500 322.214348 L 207.451869 322.498800 L 208.632435 320.182273 L 209.296087 319.314562 L 209.835869 319.294361 L 209.521577 318.831281 L 210.428664 317.227626 L 210.153349 317.177717 L 209.063009 318.444185 L 209.098386 317.801656 L 209.928710 316.478880 L 209.695993 316.015355 L 210.727797 315.623956 L 210.517365 315.319078 L 209.300599 315.694007 L 209.660522 313.828254 L 210.051002 313.473766 L 210.400720 313.694900 L 211.327619 313.258295 L 210.721526 313.226451 L 210.408753 313.586731 L 210.195791 313.246020 L 210.540538 312.439039 L 211.082327 312.075204 L 210.978544 311.526433 L 211.538272 311.116823 L 213.737081 311.169134 L 214.112633 311.669568 L 215.639753 310.551059 L 216.385968 308.882508 L 214.796893 311.145015 L 214.191650 311.452723 L 213.875903 311.045180 L 212.761004 310.817272 L 211.880455 311.058900 L 211.820283 310.246952 L 211.325087 310.685545 L 211.423855 310.389753 L 211.133026 310.535013 L 211.963062 309.303770 L 212.350774 309.896505 L 214.301821 308.776951 L 213.169448 309.091058 L 212.552085 309.616811 L 212.217059 309.155188 L 211.927522 309.245342 L 212.706512 307.790475 L 213.520574 307.067390 L 213.326194 306.667742 L 214.543124 305.974210 L 215.486367 306.243546 L 217.751335 305.488796 L 215.297155 306.057227 L 215.023532 305.707394 L 214.218086 305.629854 L 216.098932 302.650310 L 215.107658 302.165552 L 213.412227 302.001054 L 215.995057 302.703364 L 214.513427 304.337167 L 214.177233 304.935213 L 214.332932 305.209800 L 213.787122 305.654730 L 213.496004 305.445749 L 211.361490 307.470545 L 210.742956 307.396919 L 211.073203 307.650753 L 210.309900 308.818194 L 208.502719 310.011126 L 207.454227 309.141980 L 207.754059 308.502590 L 207.305438 309.146245 L 205.797147 308.625271 L 204.685387 307.011360 L 204.673082 306.307000 L 205.700655 306.305257 L 205.886873 306.200356 L 205.363394 306.146625 L 205.668457 305.910368 L 206.804110 307.028178 L 206.297860 306.217379 L 207.983345 305.297678 L 209.047217 305.935797 L 210.503828 305.755631 L 208.997075 305.852944 L 208.354238 305.136893 L 207.620858 304.977727 L 206.785345 305.910265 L 205.439686 305.508198 L 205.087454 305.816952 L 203.948868 305.252273 L 202.470786 305.315726 L 201.981865 304.744259 L 201.996426 304.352650 L 202.548922 304.181610 L 202.468223 303.797796 L 203.065223 303.630138 L 205.117088 303.600607 L 205.359498 303.251657 L 205.949217 304.012006 L 206.494023 303.960736 L 206.329239 303.298621 L 207.520572 303.197924 L 206.328623 303.177518 L 206.474745 302.706134 L 207.055749 302.976126 L 206.600155 302.743049 L 206.778372 302.224902 L 208.506821 302.080729 L 209.082533 301.492732 L 208.931264 301.285535 L 208.425915 301.948963 L 207.652297 301.663629 L 208.476366 301.128420 L 208.345625 300.886011 L 206.443162 301.275672 L 205.999259 300.882730 L 206.405735 300.541264 L 206.928596 300.714665 L 206.316831 300.206466 L 206.879929 299.759197 L 207.452915 298.163993 L 208.622735 298.091822 L 208.827368 298.725963 L 209.706358 299.253850 L 211.136718 298.771122 L 209.884884 299.006518 L 209.396887 298.674385 L 209.183599 297.691274 L 208.473106 297.865984 L 208.206169 297.393019 L 207.977910 297.479462 L 207.804305 296.973621 L 208.807269 295.815205 L 209.773584 295.644903 L 210.427125 295.880934 L 211.275949 296.791958 L 211.331138 296.403796 L 212.899824 296.244549 L 211.197935 296.323096 L 210.799641 295.577224 L 209.605047 295.307417 L 209.153553 294.735847 L 210.096469 293.732452 L 209.812653 293.120872 L 210.519743 292.673111 L 211.374923 292.450287 L 212.436540 293.766210 L 212.833912 293.567216 L 211.536324 292.396351 L 212.248211 291.541477 L 211.441677 292.414705 L 208.864509 292.060710 L 209.077570 291.316890 L 209.583758 291.106946 L 209.526828 290.751247 L 211.405992 290.583200 L 212.491133 289.385489 L 211.212823 290.461606 L 210.183178 290.216408 L 210.618961 289.744632 L 210.461294 289.383787 L 208.806633 290.504325 L 208.274891 290.574977 L 208.060764 289.935341 L 207.862653 290.175598 L 208.025283 288.580043 L 207.586527 288.338781 L 207.390240 287.611841 L 207.987036 285.196771 L 208.305942 285.087254 L 209.090182 286.093603 L 209.520859 286.205578 L 209.520758 285.835812 L 209.609968 286.385233 L 210.187076 286.915786 L 210.158056 286.114522 L 210.547920 286.695115 L 210.542690 286.439887 L 211.623545 286.530494 L 211.789684 286.225840 L 210.977572 285.909375 L 209.998091 286.107139 L 209.030197 284.278095 L 208.277846 283.874490 L 208.706471 282.562382 L 209.353511 282.345589 L 209.979920 282.802968 L 210.137650 282.549851 L 209.883489 281.907878 L 208.492978 281.348573 L 208.618695 278.869309 L 210.062589 278.637052 L 210.345830 280.329672 L 211.070721 281.139467 L 210.867750 280.566175 L 211.386304 280.558587 L 211.178759 280.303771 L 211.406650 279.540529 L 210.693121 279.063935 L 210.562995 278.270362 L 211.076115 277.498117 L 211.762592 277.685543 L 212.008613 278.838362 L 212.820253 279.215697 L 213.441966 277.967863 L 214.746813 279.140123 L 215.691266 279.499676 L 214.435824 278.080043 L 213.790341 277.912142 L 213.684990 277.474636 L 214.175448 277.314464 L 214.584570 277.909661 L 215.669383 277.885316 L 216.991418 278.925338 L 217.622502 280.045386 L 217.276750 279.007537 L 215.866286 277.722048 L 216.325990 277.232969 Z M 225.745919 265.101836 L 225.670002 265.136161 L 225.752638 265.547355 L 225.755112 265.542329 L 226.041615 265.605085 L 225.738808 265.106424 L 225.745919 265.101836 Z M 218.759367 265.906954 L 219.186412 266.490024 L 219.218384 266.098825 L 218.759367 265.906954 Z ' fill='#3C4D85' fill-opacity='1' fill-rule='evenodd' stroke='#FFFFFF' stroke-opacity='1' stroke-width='0.21' stroke-linejoin='round' stroke-linecap='butt' title='Highland&amp;lt;br/&amp;gt;Winter Year: 2023&amp;lt;br/&amp;gt;Items per Head: 16.01'/>\n <path id='svg_52553b2cf052ba37_e352' d='M 241.754155 260.914729 L 241.877327 261.511709 L 241.502720 261.677335 L 241.754155 260.914729 Z ' fill='#3C4D85' fill-opacity='1' fill-rule='evenodd' stroke='#FFFFFF' stroke-opacity='1' stroke-width='0.21' stroke-linejoin='round' stroke-linecap='butt' title='Highland&amp;lt;br/&amp;gt;Winter Year: 2023&amp;lt;br/&amp;gt;Items per Head: 16.01'/>\n <path id='svg_52553b2cf052ba37_e353' d='M 226.895278 263.593927 L 227.245664 263.644790 L 227.120664 263.937750 L 226.895278 263.593927 Z ' fill='#3C4D85' fill-opacity='1' fill-rule='evenodd' stroke='#FFFFFF' stroke-opacity='1' stroke-width='0.21' stroke-linejoin='round' stroke-linecap='butt' title='Highland&amp;lt;br/&amp;gt;Winter Year: 2023&amp;lt;br/&amp;gt;Items per Head: 16.01'/>\n <path id='svg_52553b2cf052ba37_e354' d='M 216.909629 267.138909 L 216.989202 267.521699 L 216.665682 267.557179 L 216.541811 267.298053 L 216.909629 267.138909 Z ' fill='#3C4D85' fill-opacity='1' fill-rule='evenodd' stroke='#FFFFFF' stroke-opacity='1' stroke-width='0.21' stroke-linejoin='round' stroke-linecap='butt' title='Highland&amp;lt;br/&amp;gt;Winter Year: 2023&amp;lt;br/&amp;gt;Items per Head: 16.01'/>\n <path id='svg_52553b2cf052ba37_e355' d='M 214.235538 323.377894 L 215.537719 324.425053 L 215.395556 324.839323 L 215.730847 324.939138 L 215.762102 325.418173 L 216.188472 325.331646 L 216.426410 327.027611 L 216.090934 327.351294 L 216.346469 327.940667 L 216.018334 328.118022 L 215.568379 327.198302 L 215.168158 326.793980 L 214.879727 326.900683 L 214.780446 325.256566 L 213.804657 324.257705 L 213.711855 323.896345 L 214.235538 323.377894 Z ' fill='#3C4D85' fill-opacity='1' fill-rule='evenodd' stroke='#FFFFFF' stroke-opacity='1' stroke-width='0.21' stroke-linejoin='round' stroke-linecap='butt' title='Highland&amp;lt;br/&amp;gt;Winter Year: 2023&amp;lt;br/&amp;gt;Items per Head: 16.01'/>\n <path id='svg_52553b2cf052ba37_e356' d='M 213.732672 275.361244 L 214.029326 275.736035 L 213.847006 275.912510 L 213.560299 275.774180 L 213.732672 275.361244 Z ' fill='#3C4D85' fill-opacity='1' fill-rule='evenodd' stroke='#FFFFFF' stroke-opacity='1' stroke-width='0.21' stroke-linejoin='round' stroke-linecap='butt' title='Highland&amp;lt;br/&amp;gt;Winter Year: 2023&amp;lt;br/&amp;gt;Items per Head: 16.01'/>\n <path id='svg_52553b2cf052ba37_e357' d='M 212.452742 276.568573 L 212.589534 276.816726 L 212.312772 276.874252 L 212.452742 276.568573 Z ' fill='#3C4D85' fill-opacity='1' fill-rule='evenodd' stroke='#FFFFFF' stroke-opacity='1' stroke-width='0.21' stroke-linejoin='round' stroke-linecap='butt' title='Highland&amp;lt;br/&amp;gt;Winter Year: 2023&amp;lt;br/&amp;gt;Items per Head: 16.01'/>\n <path id='svg_52553b2cf052ba37_e358' d='M 211.838515 308.724430 L 210.752185 310.112437 L 209.549468 310.899858 L 209.926106 310.154275 L 209.641757 310.199905 L 210.437810 309.866255 L 211.285711 308.755089 L 211.838515 308.724430 Z ' fill='#3C4D85' fill-opacity='1' fill-rule='evenodd' stroke='#FFFFFF' stroke-opacity='1' stroke-width='0.21' stroke-linejoin='round' stroke-linecap='butt' title='Highland&amp;lt;br/&amp;gt;Winter Year: 2023&amp;lt;br/&amp;gt;Items per Head: 16.01'/>\n <path id='svg_52553b2cf052ba37_e359' d='M 210.798677 279.233887 L 211.144817 279.865095 L 210.711680 279.564648 L 210.798677 279.233887 Z ' fill='#3C4D85' fill-opacity='1' fill-rule='evenodd' stroke='#FFFFFF' stroke-opacity='1' stroke-width='0.21' stroke-linejoin='round' stroke-linecap='butt' title='Highland&amp;lt;br/&amp;gt;Winter Year: 2023&amp;lt;br/&amp;gt;Items per Head: 16.01'/>\n <path id='svg_52553b2cf052ba37_e360' d='M 210.783049 311.777926 L 210.044234 312.937472 L 209.573873 312.739258 L 209.935540 312.117340 L 210.783049 311.777926 Z ' fill='#3C4D85' fill-opacity='1' fill-rule='evenodd' stroke='#FFFFFF' stroke-opacity='1' stroke-width='0.21' stroke-linejoin='round' stroke-linecap='butt' title='Highland&amp;lt;br/&amp;gt;Winter Year: 2023&amp;lt;br/&amp;gt;Items per Head: 16.01'/>\n <path id='svg_52553b2cf052ba37_e361' d='M 201.850920 281.903837 L 202.534977 281.958103 L 202.447098 282.315112 L 203.059993 282.772265 L 203.187800 283.569551 L 203.709596 283.708065 L 204.318778 284.809592 L 203.995380 288.400184 L 203.292660 288.840376 L 204.205387 289.208728 L 203.915255 289.753186 L 204.462234 290.875323 L 203.711319 291.383460 L 204.179157 291.071118 L 204.928718 291.117958 L 205.102631 291.602982 L 204.653700 292.122972 L 205.333042 291.733108 L 206.517301 292.369074 L 206.803597 292.904898 L 208.618900 292.228591 L 209.144531 292.327237 L 208.896070 292.562776 L 209.914724 292.743352 L 209.575412 293.800767 L 208.351470 294.620795 L 207.909576 294.485172 L 207.869871 295.077743 L 208.127518 295.192775 L 207.794872 295.697691 L 207.171642 295.958518 L 206.206803 297.402842 L 205.216144 297.868198 L 204.781981 297.202085 L 205.310236 296.634556 L 205.371598 295.508399 L 207.331688 294.203675 L 205.506748 294.522108 L 205.083885 293.205406 L 205.105439 294.078839 L 204.345254 295.416111 L 203.981743 295.099051 L 204.088079 293.989033 L 203.428734 293.666334 L 203.310707 294.215035 L 201.420344 294.425863 L 201.948231 293.595682 L 200.967313 293.659771 L 200.737313 292.890294 L 201.145020 292.842921 L 201.256380 292.457157 L 200.513669 292.732379 L 199.630986 291.271155 L 199.662774 290.848169 L 200.337296 290.556520 L 200.350113 290.235379 L 201.520221 291.271465 L 200.691086 290.259783 L 200.716188 289.885033 L 199.838838 290.413392 L 200.071015 289.812598 L 199.749217 289.562293 L 199.793043 288.925506 L 199.689969 288.721182 L 199.222355 289.502306 L 199.229493 288.723007 L 198.669859 289.014040 L 198.714466 290.157857 L 198.461699 290.286957 L 196.856403 289.306962 L 196.609072 288.208225 L 196.346872 287.939461 L 196.054729 288.087943 L 196.211824 287.252739 L 196.947747 287.488112 L 196.636861 286.695422 L 197.099121 286.036487 L 197.936355 287.708660 L 198.392053 287.668793 L 198.591148 288.011468 L 197.936786 286.348316 L 198.543631 286.224344 L 198.870862 286.588737 L 198.998568 286.316201 L 198.073290 285.241273 L 197.904794 285.387313 L 198.243388 283.937861 L 198.864483 284.429756 L 199.013826 285.363073 L 199.735682 285.751625 L 200.205940 286.572680 L 200.659175 286.174200 L 200.461372 287.068142 L 201.011920 285.957940 L 201.982542 287.704067 L 201.832728 287.075279 L 202.082827 287.070090 L 201.401580 286.278794 L 201.070164 285.195231 L 201.570732 284.654035 L 201.143789 284.674831 L 200.836471 283.348552 L 201.771038 282.741810 L 201.850920 281.903837 Z ' fill='#3C4D85' fill-opacity='1' fill-rule='evenodd' stroke='#FFFFFF' stroke-opacity='1' stroke-width='0.21' stroke-linejoin='round' stroke-linecap='butt' title='Highland&amp;lt;br/&amp;gt;Winter Year: 2023&amp;lt;br/&amp;gt;Items per Head: 16.01'/>\n <path id='svg_52553b2cf052ba37_e362' d='M 209.575309 313.897676 L 208.986513 315.345570 L 208.649519 314.583783 L 209.575309 313.897676 Z ' fill='#3C4D85' fill-opacity='1' fill-rule='evenodd' stroke='#FFFFFF' stroke-opacity='1' stroke-width='0.21' stroke-linejoin='round' stroke-linecap='butt' title='Highland&amp;lt;br/&amp;gt;Winter Year: 2023&amp;lt;br/&amp;gt;Items per Head: 16.01'/>\n <path id='svg_52553b2cf052ba37_e363' d='M 209.150478 316.147039 L 209.384683 316.683434 L 209.074186 316.949225 L 209.150478 316.147039 Z ' fill='#3C4D85' fill-opacity='1' fill-rule='evenodd' stroke='#FFFFFF' stroke-opacity='1' stroke-width='0.21' stroke-linejoin='round' stroke-linecap='butt' title='Highland&amp;lt;br/&amp;gt;Winter Year: 2023&amp;lt;br/&amp;gt;Items per Head: 16.01'/>\n <path id='svg_52553b2cf052ba37_e364' d='M 208.817729 315.211239 L 209.061573 315.756209 L 208.738668 317.154821 L 208.409508 316.360735 L 208.817729 315.211239 Z ' fill='#3C4D85' fill-opacity='1' fill-rule='evenodd' stroke='#FFFFFF' stroke-opacity='1' stroke-width='0.21' stroke-linejoin='round' stroke-linecap='butt' title='Highland&amp;lt;br/&amp;gt;Winter Year: 2023&amp;lt;br/&amp;gt;Items per Head: 16.01'/>\n <path id='svg_52553b2cf052ba37_e365' d='M 203.146743 306.062027 L 203.891608 306.505624 L 203.852150 306.943294 L 204.784544 307.916603 L 205.144119 309.264354 L 207.151831 309.531844 L 207.500575 310.140329 L 207.996366 310.185962 L 208.606676 311.040095 L 208.881694 310.964398 L 208.827572 311.741832 L 208.482355 311.393475 L 208.821830 311.897612 L 208.438016 312.612925 L 207.957605 312.417583 L 208.081271 311.887174 L 207.661055 311.956247 L 207.797231 312.289631 L 207.001565 312.932734 L 208.072249 312.572628 L 208.223497 312.891430 L 206.403273 314.162337 L 205.701886 313.871835 L 206.239636 313.390605 L 205.936933 313.120570 L 205.157080 313.855839 L 204.458051 313.797903 L 203.717389 314.418383 L 203.280970 314.178128 L 202.442894 314.542871 L 201.682853 314.336761 L 201.082325 314.420415 L 200.867848 314.900125 L 200.787557 314.678534 L 200.301714 314.813067 L 199.774750 314.191254 L 199.364889 314.267647 L 199.841280 312.943398 L 200.601342 313.051497 L 200.886101 313.238638 L 200.709298 313.522535 L 201.234702 313.673497 L 201.178940 313.110543 L 201.893269 313.393845 L 202.991803 313.216735 L 204.130900 312.748466 L 204.393408 312.263853 L 201.873683 312.798834 L 201.756478 312.173738 L 202.498779 311.591403 L 202.604295 311.020345 L 203.785170 310.767580 L 204.526549 309.890331 L 202.860855 310.265841 L 202.643056 309.609572 L 201.678013 308.892290 L 200.944242 308.983246 L 200.287153 308.635114 L 200.349089 308.248428 L 201.080602 307.718634 L 200.672608 307.749973 L 200.602777 307.049712 L 201.265629 307.156643 L 201.445263 306.902256 L 202.266009 307.625280 L 201.841690 307.140871 L 201.841075 306.481628 L 202.255960 306.755150 L 202.238630 306.304437 L 203.146743 306.062027 Z ' fill='#3C4D85' fill-opacity='1' fill-rule='evenodd' stroke='#FFFFFF' stroke-opacity='1' stroke-width='0.21' stroke-linejoin='round' stroke-linecap='butt' title='Highland&amp;lt;br/&amp;gt;Winter Year: 2023&amp;lt;br/&amp;gt;Items per Head: 16.01'/>\n <path id='svg_52553b2cf052ba37_e366' d='M 208.387154 281.643791 L 208.777634 281.665017 L 208.607006 281.889788 L 208.387154 281.643791 Z ' fill='#3C4D85' fill-opacity='1' fill-rule='evenodd' stroke='#FFFFFF' stroke-opacity='1' stroke-width='0.21' stroke-linejoin='round' stroke-linecap='butt' title='Highland&amp;lt;br/&amp;gt;Winter Year: 2023&amp;lt;br/&amp;gt;Items per Head: 16.01'/>\n <path id='svg_52553b2cf052ba37_e367' d='M 208.078216 316.763931 L 208.269026 317.525306 L 207.341841 317.646511 L 207.369526 317.228240 L 208.078216 316.763931 Z ' fill='#3C4D85' fill-opacity='1' fill-rule='evenodd' stroke='#FFFFFF' stroke-opacity='1' stroke-width='0.21' stroke-linejoin='round' stroke-linecap='butt' title='Highland&amp;lt;br/&amp;gt;Winter Year: 2023&amp;lt;br/&amp;gt;Items per Head: 16.01'/>\n <path id='svg_52553b2cf052ba37_e368' d='M 208.119109 315.943799 L 207.984266 316.736655 L 207.771799 316.503678 L 208.119109 315.943799 Z ' fill='#3C4D85' fill-opacity='1' fill-rule='evenodd' stroke='#FFFFFF' stroke-opacity='1' stroke-width='0.21' stroke-linejoin='round' stroke-linecap='butt' title='Highland&amp;lt;br/&amp;gt;Winter Year: 2023&amp;lt;br/&amp;gt;Items per Head: 16.01'/>\n <path id='svg_52553b2cf052ba37_e369' d='M 207.778363 317.916832 L 208.003749 318.807287 L 205.941178 321.915849 L 205.358370 323.732278 L 205.164258 323.968125 L 205.066228 323.720487 L 204.948100 324.241502 L 204.512296 324.217610 L 204.061501 325.892963 L 203.138335 325.764150 L 202.528312 324.910385 L 202.640390 323.299244 L 203.454575 322.298023 L 204.888420 322.159079 L 205.651436 321.738963 L 204.585880 322.076019 L 203.749997 321.734656 L 204.515167 320.335265 L 207.778363 317.916832 Z ' fill='#3C4D85' fill-opacity='1' fill-rule='evenodd' stroke='#FFFFFF' stroke-opacity='1' stroke-width='0.21' stroke-linejoin='round' stroke-linecap='butt' title='Highland&amp;lt;br/&amp;gt;Winter Year: 2023&amp;lt;br/&amp;gt;Items per Head: 16.01'/>\n <path id='svg_52553b2cf052ba37_e370' d='M 207.474121 290.273729 L 207.853424 290.818022 L 207.559538 290.789003 L 207.474121 290.273729 Z ' fill='#3C4D85' fill-opacity='1' fill-rule='evenodd' stroke='#FFFFFF' stroke-opacity='1' stroke-width='0.21' stroke-linejoin='round' stroke-linecap='butt' title='Highland&amp;lt;br/&amp;gt;Winter Year: 2023&amp;lt;br/&amp;gt;Items per Head: 16.01'/>\n <path id='svg_52553b2cf052ba37_e371' d='M 207.253348 291.917992 L 207.482016 292.211057 L 207.205870 292.364972 L 207.253348 291.917992 Z ' fill='#3C4D85' fill-opacity='1' fill-rule='evenodd' stroke='#FFFFFF' stroke-opacity='1' stroke-width='0.21' stroke-linejoin='round' stroke-linecap='butt' title='Highland&amp;lt;br/&amp;gt;Winter Year: 2023&amp;lt;br/&amp;gt;Items per Head: 16.01'/>\n <path id='svg_52553b2cf052ba37_e372' d='M 207.082511 327.485420 L 207.095146 328.508605 L 206.453930 329.375476 L 206.354669 328.659629 L 207.082511 327.485420 Z ' fill='#3C4D85' fill-opacity='1' fill-rule='evenodd' stroke='#FFFFFF' stroke-opacity='1' stroke-width='0.21' stroke-linejoin='round' stroke-linecap='butt' title='Highland&amp;lt;br/&amp;gt;Winter Year: 2023&amp;lt;br/&amp;gt;Items per Head: 16.01'/>\n <path id='svg_52553b2cf052ba37_e373' d='M 206.378663 285.019680 L 206.553191 285.384012 L 206.167631 286.679939 L 205.899791 285.931278 L 206.184921 285.865426 L 206.091648 285.309053 L 206.378663 285.019680 Z ' fill='#3C4D85' fill-opacity='1' fill-rule='evenodd' stroke='#FFFFFF' stroke-opacity='1' stroke-width='0.21' stroke-linejoin='round' stroke-linecap='butt' title='Highland&amp;lt;br/&amp;gt;Winter Year: 2023&amp;lt;br/&amp;gt;Items per Head: 16.01'/>\n <path id='svg_52553b2cf052ba37_e374' d='M 205.703731 290.895134 L 206.546217 291.369801 L 206.269148 292.110771 L 205.481421 291.746849 L 205.325147 291.292074 L 205.703731 290.895134 Z ' fill='#3C4D85' fill-opacity='1' fill-rule='evenodd' stroke='#FFFFFF' stroke-opacity='1' stroke-width='0.21' stroke-linejoin='round' stroke-linecap='butt' title='Highland&amp;lt;br/&amp;gt;Winter Year: 2023&amp;lt;br/&amp;gt;Items per Head: 16.01'/>\n <path id='svg_52553b2cf052ba37_e375' d='M 206.292322 300.295677 L 206.475464 300.477483 L 205.899177 300.630785 L 206.292322 300.295677 Z ' fill='#3C4D85' fill-opacity='1' fill-rule='evenodd' stroke='#FFFFFF' stroke-opacity='1' stroke-width='0.21' stroke-linejoin='round' stroke-linecap='butt' title='Highland&amp;lt;br/&amp;gt;Winter Year: 2023&amp;lt;br/&amp;gt;Items per Head: 16.01'/>\n <path id='svg_52553b2cf052ba37_e376' d='M 205.847291 286.532380 L 206.060660 287.395887 L 205.391183 288.498110 L 205.787097 290.151909 L 205.014443 290.798334 L 204.574845 290.294094 L 204.719841 288.650079 L 205.078841 287.778369 L 205.595344 287.938641 L 205.442864 287.127226 L 205.583347 286.966031 L 205.603035 287.359690 L 205.947885 287.081186 L 205.847291 286.532380 Z ' fill='#3C4D85' fill-opacity='1' fill-rule='evenodd' stroke='#FFFFFF' stroke-opacity='1' stroke-width='0.21' stroke-linejoin='round' stroke-linecap='butt' title='Highland&amp;lt;br/&amp;gt;Winter Year: 2023&amp;lt;br/&amp;gt;Items per Head: 16.01'/>\n <path id='svg_52553b2cf052ba37_e377' d='M 203.375309 299.449910 L 203.716979 299.950316 L 203.615565 300.757013 L 203.027077 301.135188 L 202.465617 300.779143 L 202.453148 300.364483 L 203.069734 300.122894 L 203.011695 299.646175 L 203.375309 299.449910 Z ' fill='#3C4D85' fill-opacity='1' fill-rule='evenodd' stroke='#FFFFFF' stroke-opacity='1' stroke-width='0.21' stroke-linejoin='round' stroke-linecap='butt' title='Highland&amp;lt;br/&amp;gt;Winter Year: 2023&amp;lt;br/&amp;gt;Items per Head: 16.01'/>\n <path id='svg_52553b2cf052ba37_e378' d='M 203.372930 310.332596 L 203.498975 310.505481 L 203.206833 310.462619 L 203.372930 310.332596 Z ' fill='#3C4D85' fill-opacity='1' fill-rule='evenodd' stroke='#FFFFFF' stroke-opacity='1' stroke-width='0.21' stroke-linejoin='round' stroke-linecap='butt' title='Highland&amp;lt;br/&amp;gt;Winter Year: 2023&amp;lt;br/&amp;gt;Items per Head: 16.01'/>\n <path id='svg_52553b2cf052ba37_e379' d='M 202.159878 322.427533 L 202.298823 325.327525 L 202.976011 326.468100 L 203.212308 328.310391 L 202.671358 328.902142 L 202.483911 328.751917 L 202.445662 329.227814 L 201.452338 329.554801 L 200.609340 329.394344 L 200.224499 330.251492 L 199.855450 330.527741 L 199.279779 330.421712 L 198.955029 330.188120 L 199.069056 329.543336 L 200.034182 328.523453 L 199.139912 327.030852 L 200.185430 326.091772 L 199.084971 325.837057 L 198.146279 327.505621 L 197.148894 328.243555 L 196.690080 327.701373 L 197.597680 326.430878 L 197.676843 325.746204 L 197.340505 325.465854 L 197.721551 325.113725 L 197.830963 324.126962 L 198.638790 324.048312 L 199.536114 323.342414 L 199.441509 324.588505 L 199.625859 323.539499 L 200.051409 323.673829 L 201.231154 322.612314 L 202.159878 322.427533 Z ' fill='#3C4D85' fill-opacity='1' fill-rule='evenodd' stroke='#FFFFFF' stroke-opacity='1' stroke-width='0.21' stroke-linejoin='round' stroke-linecap='butt' title='Highland&amp;lt;br/&amp;gt;Winter Year: 2023&amp;lt;br/&amp;gt;Items per Head: 16.01'/>\n <path id='svg_52553b2cf052ba37_e380' d='M 202.864445 294.372950 L 203.156484 294.708160 L 202.415105 295.156167 L 202.223761 294.716158 L 202.864445 294.372950 Z ' fill='#3C4D85' fill-opacity='1' fill-rule='evenodd' stroke='#FFFFFF' stroke-opacity='1' stroke-width='0.21' stroke-linejoin='round' stroke-linecap='butt' title='Highland&amp;lt;br/&amp;gt;Winter Year: 2023&amp;lt;br/&amp;gt;Items per Head: 16.01'/>\n <path id='svg_52553b2cf052ba37_e381' d='M 200.656099 309.524707 L 201.737406 309.539227 L 202.720373 310.266046 L 201.910927 310.482574 L 201.696389 310.215288 L 201.455722 310.544448 L 201.101233 310.036660 L 201.266224 309.779074 L 200.994077 310.153455 L 200.637232 309.952165 L 200.656099 309.524707 Z ' fill='#3C4D85' fill-opacity='1' fill-rule='evenodd' stroke='#FFFFFF' stroke-opacity='1' stroke-width='0.21' stroke-linejoin='round' stroke-linecap='butt' title='Highland&amp;lt;br/&amp;gt;Winter Year: 2023&amp;lt;br/&amp;gt;Items per Head: 16.01'/>\n <path id='svg_52553b2cf052ba37_e382' d='M 202.159570 317.965825 L 202.342690 318.260223 L 201.458737 319.592655 L 201.597435 319.983341 L 200.611800 320.947852 L 200.327759 320.423246 L 200.974184 320.304811 L 200.319761 320.073066 L 200.793506 319.072153 L 202.159570 317.965825 Z ' fill='#3C4D85' fill-opacity='1' fill-rule='evenodd' stroke='#FFFFFF' stroke-opacity='1' stroke-width='0.21' stroke-linejoin='round' stroke-linecap='butt' title='Highland&amp;lt;br/&amp;gt;Winter Year: 2023&amp;lt;br/&amp;gt;Items per Head: 16.01'/>\n <path id='svg_52553b2cf052ba37_e383' d='M 201.674239 301.563097 L 202.215559 301.674149 L 202.252781 302.083909 L 201.593230 302.062785 L 201.674239 301.563097 Z ' fill='#3C4D85' fill-opacity='1' fill-rule='evenodd' stroke='#FFFFFF' stroke-opacity='1' stroke-width='0.21' stroke-linejoin='round' stroke-linecap='butt' title='Highland&amp;lt;br/&amp;gt;Winter Year: 2023&amp;lt;br/&amp;gt;Items per Head: 16.01'/>\n <path id='svg_52553b2cf052ba37_e384' d='M 201.189953 296.677767 L 202.026266 297.281658 L 202.161109 297.673164 L 201.816342 297.857227 L 202.250730 298.034728 L 201.913163 299.014208 L 201.239256 299.574395 L 199.490400 297.796316 L 201.189953 296.677767 Z ' fill='#3C4D85' fill-opacity='1' fill-rule='evenodd' stroke='#FFFFFF' stroke-opacity='1' stroke-width='0.21' stroke-linejoin='round' stroke-linecap='butt' title='Highland&amp;lt;br/&amp;gt;Winter Year: 2023&amp;lt;br/&amp;gt;Items per Head: 16.01'/>\n <path id='svg_52553b2cf052ba37_e385' d='M 199.598706 290.065282 L 199.576619 290.406194 L 199.319361 290.367760 L 199.598706 290.065282 Z ' fill='#3C4D85' fill-opacity='1' fill-rule='evenodd' stroke='#FFFFFF' stroke-opacity='1' stroke-width='0.21' stroke-linejoin='round' stroke-linecap='butt' title='Highland&amp;lt;br/&amp;gt;Winter Year: 2023&amp;lt;br/&amp;gt;Items per Head: 16.01'/>\n <path id='svg_52553b2cf052ba37_e386' d='M 198.388074 296.281156 L 199.229021 296.388210 L 199.084540 296.658817 L 199.479019 296.950652 L 198.523942 296.579962 L 197.697146 296.792635 L 198.388074 296.281156 Z ' fill='#3C4D85' fill-opacity='1' fill-rule='evenodd' stroke='#FFFFFF' stroke-opacity='1' stroke-width='0.21' stroke-linejoin='round' stroke-linecap='butt' title='Highland&amp;lt;br/&amp;gt;Winter Year: 2023&amp;lt;br/&amp;gt;Items per Head: 16.01'/>\n <path id='svg_52553b2cf052ba37_e387' d='M 199.456768 312.813293 L 199.229740 313.559388 L 198.699966 313.724296 L 198.792397 313.171164 L 199.456768 312.813293 Z ' fill='#3C4D85' fill-opacity='1' fill-rule='evenodd' stroke='#FFFFFF' stroke-opacity='1' stroke-width='0.21' stroke-linejoin='round' stroke-linecap='butt' title='Highland&amp;lt;br/&amp;gt;Winter Year: 2023&amp;lt;br/&amp;gt;Items per Head: 16.01'/>\n <path id='svg_52553b2cf052ba37_e388' d='M 198.872380 304.979798 L 199.089154 305.390171 L 198.424681 306.571046 L 198.127432 306.480644 L 198.119003 306.921740 L 196.951870 307.534325 L 196.771601 307.218700 L 196.585795 307.576265 L 196.110511 307.348518 L 195.843082 307.803191 L 195.800117 307.156766 L 196.391784 307.051558 L 197.032365 306.062334 L 198.872380 304.979798 Z ' fill='#3C4D85' fill-opacity='1' fill-rule='evenodd' stroke='#FFFFFF' stroke-opacity='1' stroke-width='0.21' stroke-linejoin='round' stroke-linecap='butt' title='Highland&amp;lt;br/&amp;gt;Winter Year: 2023&amp;lt;br/&amp;gt;Items per Head: 16.01'/>\n <path id='svg_52553b2cf052ba37_e389' d='M 195.098217 307.818162 L 195.433530 308.541084 L 195.000762 308.558392 L 194.943994 308.859578 L 194.803716 308.526564 L 194.448743 308.586495 L 194.289140 309.358918 L 193.467101 309.314927 L 193.172211 310.266928 L 192.097222 310.015229 L 192.215760 309.196839 L 191.829791 308.840199 L 192.306818 308.464177 L 193.053323 308.242070 L 193.530852 308.570683 L 194.282392 308.069902 L 194.759957 308.244833 L 195.098217 307.818162 Z ' fill='#3C4D85' fill-opacity='1' fill-rule='evenodd' stroke='#FFFFFF' stroke-opacity='1' stroke-width='0.21' stroke-linejoin='round' stroke-linecap='butt' title='Highland&amp;lt;br/&amp;gt;Winter Year: 2023&amp;lt;br/&amp;gt;Items per Head: 16.01'/>\n <path id='svg_52553b2cf052ba37_e390' d='M 244.671701 320.994713 L 247.003917 321.254616 L 247.948576 322.469658 L 249.360806 322.808210 L 250.370454 323.814251 L 249.034518 325.227239 L 248.553082 324.594658 L 247.916090 324.599066 L 247.712237 325.039793 L 248.162212 325.755865 L 247.389947 326.485944 L 246.429231 326.069109 L 245.517427 326.478971 L 245.042657 326.105923 L 244.225089 326.704665 L 243.839839 326.552821 L 243.102459 327.249122 L 242.794771 326.656490 L 241.185025 327.984083 L 240.814951 328.495152 L 240.957586 328.839693 L 240.502506 329.100046 L 239.787890 327.003042 L 238.629123 327.585030 L 238.381033 327.102016 L 237.726795 327.165570 L 237.433319 326.448924 L 236.695529 326.742707 L 236.089382 327.634660 L 235.024442 327.275250 L 234.567781 326.704870 L 232.734535 327.399490 L 232.632198 326.905135 L 232.981928 326.579359 L 232.555845 325.542310 L 233.060803 325.028082 L 231.983516 325.196149 L 231.537070 324.725993 L 232.171989 324.558973 L 232.831540 323.806110 L 233.664550 323.595856 L 234.557712 322.443119 L 235.365047 322.715307 L 235.825233 322.273557 L 237.209715 322.614037 L 238.366082 322.436597 L 238.850184 322.899247 L 239.898348 322.668487 L 241.028402 323.642944 L 242.064262 323.595631 L 243.405204 322.954436 L 243.535495 322.189841 L 244.671701 320.994713 Z ' fill='#3C4073' fill-opacity='1' fill-rule='evenodd' stroke='#FFFFFF' stroke-opacity='1' stroke-width='0.21' stroke-linejoin='round' stroke-linecap='butt' title='Lothian&amp;lt;br/&amp;gt;Winter Year: 2023&amp;lt;br/&amp;gt;Items per Head: 16.81'/>\n <path id='svg_52553b2cf052ba37_e391' d='M 250.525745 245.099791 L 250.718380 245.401162 L 250.312581 245.412381 L 250.429889 245.982309 L 250.094760 246.173202 L 249.751430 245.930751 L 249.956883 245.275611 L 250.525745 245.099791 Z ' fill='#3B3B6C' fill-opacity='1' fill-rule='evenodd' stroke='#FFFFFF' stroke-opacity='1' stroke-width='0.21' stroke-linejoin='round' stroke-linecap='butt' title='Orkney&amp;lt;br/&amp;gt;Winter Year: 2023&amp;lt;br/&amp;gt;Items per Head: 17.11'/>\n <path id='svg_52553b2cf052ba37_e392' d='M 248.435035 246.751806 L 248.501318 247.082094 L 248.916367 247.145855 L 248.295435 248.050542 L 248.791676 247.983193 L 249.329183 247.400363 L 249.734347 247.474708 L 250.066214 246.931501 L 250.209525 247.592609 L 250.681403 247.779789 L 249.458774 247.756841 L 248.981667 248.581586 L 249.095550 249.017924 L 248.824511 248.565324 L 248.327407 249.078197 L 248.276341 248.599696 L 247.963957 248.883737 L 247.565827 248.720223 L 246.885153 249.863260 L 246.860523 249.012857 L 248.080569 247.939816 L 247.747224 247.038411 L 247.913014 247.462996 L 248.214201 247.386827 L 248.435035 246.751806 Z ' fill='#3B3B6C' fill-opacity='1' fill-rule='evenodd' stroke='#FFFFFF' stroke-opacity='1' stroke-width='0.21' stroke-linejoin='round' stroke-linecap='butt' title='Orkney&amp;lt;br/&amp;gt;Winter Year: 2023&amp;lt;br/&amp;gt;Items per Head: 17.11'/>\n <path id='svg_52553b2cf052ba37_e393' d='M 247.648313 250.360588 L 247.690067 250.800864 L 248.335406 250.845776 L 247.922653 250.957323 L 248.030527 251.425816 L 248.724840 251.300244 L 248.709828 252.358149 L 248.350254 252.175010 L 247.894291 252.443628 L 247.901017 251.859959 L 247.594560 251.630081 L 247.319213 251.780961 L 247.397679 252.368691 L 246.921454 252.294142 L 247.145979 251.586539 L 247.710351 251.357442 L 247.091222 250.571600 L 247.648313 250.360588 Z ' fill='#3B3B6C' fill-opacity='1' fill-rule='evenodd' stroke='#FFFFFF' stroke-opacity='1' stroke-width='0.21' stroke-linejoin='round' stroke-linecap='butt' title='Orkney&amp;lt;br/&amp;gt;Winter Year: 2023&amp;lt;br/&amp;gt;Items per Head: 17.11'/>\n <path id='svg_52553b2cf052ba37_e394' d='M 248.131983 250.484788 L 248.274393 250.675023 L 247.977493 250.759682 L 248.131983 250.484788 Z ' fill='#3B3B6C' fill-opacity='1' fill-rule='evenodd' stroke='#FFFFFF' stroke-opacity='1' stroke-width='0.21' stroke-linejoin='round' stroke-linecap='butt' title='Orkney&amp;lt;br/&amp;gt;Winter Year: 2023&amp;lt;br/&amp;gt;Items per Head: 17.11'/>\n <path id='svg_52553b2cf052ba37_e395' d='M 246.685175 256.234505 L 247.182730 256.316375 L 246.954718 256.557614 L 246.685175 256.234505 Z ' fill='#3B3B6C' fill-opacity='1' fill-rule='evenodd' stroke='#FFFFFF' stroke-opacity='1' stroke-width='0.21' stroke-linejoin='round' stroke-linecap='butt' title='Orkney&amp;lt;br/&amp;gt;Winter Year: 2023&amp;lt;br/&amp;gt;Items per Head: 17.11'/>\n <path id='svg_52553b2cf052ba37_e396' d='M 240.694648 250.468585 L 242.427281 251.187119 L 242.748011 251.611663 L 242.557550 251.773127 L 243.236768 252.383703 L 243.137200 253.163064 L 242.587410 252.916818 L 242.537923 253.493393 L 241.793571 253.767159 L 242.011924 253.934630 L 243.159697 253.780285 L 243.708482 254.380728 L 244.070189 253.671383 L 244.447769 253.829915 L 244.260999 254.215513 L 244.562555 254.225809 L 244.192133 254.819630 L 244.573875 254.943029 L 244.913783 254.371746 L 245.293003 254.482800 L 245.560310 254.197220 L 245.695318 254.881892 L 245.075636 255.086670 L 245.240276 255.734120 L 245.618656 255.884118 L 245.807641 255.739329 L 245.447185 255.313453 L 246.676398 254.691166 L 246.611818 255.911538 L 245.751633 256.008175 L 245.173562 256.981174 L 244.908922 256.532021 L 244.422544 256.432432 L 244.389699 256.528644 L 243.953907 256.443239 L 243.583196 254.960563 L 240.950574 256.078722 L 240.376829 255.264868 L 240.281363 254.371500 L 239.714121 255.132403 L 238.994994 254.741780 L 238.929306 253.601533 L 239.309552 252.703858 L 239.073624 251.585022 L 239.539533 250.999181 L 239.277149 250.836692 L 240.694648 250.468585 Z ' fill='#3B3B6C' fill-opacity='1' fill-rule='evenodd' stroke='#FFFFFF' stroke-opacity='1' stroke-width='0.21' stroke-linejoin='round' stroke-linecap='butt' title='Orkney&amp;lt;br/&amp;gt;Winter Year: 2023&amp;lt;br/&amp;gt;Items per Head: 17.11'/>\n <path id='svg_52553b2cf052ba37_e397' d='M 244.366377 256.596961 L 244.221869 257.020265 L 244.555028 256.914769 L 244.522789 257.352193 L 244.896821 257.396818 L 244.306651 257.692100 L 244.629904 258.175933 L 244.001773 258.736899 L 244.085181 260.136538 L 243.425385 260.029279 L 243.402825 258.912965 L 242.904429 258.437417 L 243.365090 258.336003 L 243.123070 258.002392 L 242.744484 258.144638 L 242.999855 257.831146 L 243.693839 257.987482 L 244.339465 257.626082 L 243.308016 257.384925 L 244.211020 257.321164 L 244.093979 256.833884 L 244.366377 256.596961 Z ' fill='#3B3B6C' fill-opacity='1' fill-rule='evenodd' stroke='#FFFFFF' stroke-opacity='1' stroke-width='0.21' stroke-linejoin='round' stroke-linecap='butt' title='Orkney&amp;lt;br/&amp;gt;Winter Year: 2023&amp;lt;br/&amp;gt;Items per Head: 17.11'/>\n <path id='svg_52553b2cf052ba37_e398' d='M 246.374350 248.423610 L 246.565550 248.842988 L 246.284031 248.732487 L 246.374350 248.423610 Z ' fill='#3B3B6C' fill-opacity='1' fill-rule='evenodd' stroke='#FFFFFF' stroke-opacity='1' stroke-width='0.21' stroke-linejoin='round' stroke-linecap='butt' title='Orkney&amp;lt;br/&amp;gt;Winter Year: 2023&amp;lt;br/&amp;gt;Items per Head: 17.11'/>\n <path id='svg_52553b2cf052ba37_e399' d='M 246.142748 248.326482 L 246.102450 248.767147 L 246.440880 248.973872 L 246.088873 249.697552 L 246.367603 250.676274 L 245.752453 250.962920 L 245.321100 249.700730 L 245.887091 249.696999 L 245.756474 248.686549 L 246.142748 248.326482 Z ' fill='#3B3B6C' fill-opacity='1' fill-rule='evenodd' stroke='#FFFFFF' stroke-opacity='1' stroke-width='0.21' stroke-linejoin='round' stroke-linecap='butt' title='Orkney&amp;lt;br/&amp;gt;Winter Year: 2023&amp;lt;br/&amp;gt;Items per Head: 17.11'/>\n <path id='svg_52553b2cf052ba37_e400' d='M 245.580346 252.049620 L 245.337835 252.978816 L 245.540807 253.412260 L 245.288184 253.638223 L 244.028127 253.343968 L 244.409010 252.260366 L 244.949426 252.748076 L 245.580346 252.049620 Z ' fill='#3B3B6C' fill-opacity='1' fill-rule='evenodd' stroke='#FFFFFF' stroke-opacity='1' stroke-width='0.21' stroke-linejoin='round' stroke-linecap='butt' title='Orkney&amp;lt;br/&amp;gt;Winter Year: 2023&amp;lt;br/&amp;gt;Items per Head: 17.11'/>\n <path id='svg_52553b2cf052ba37_e401' d='M 243.872653 245.795929 L 244.163995 246.074187 L 243.487094 246.776149 L 244.473180 247.077705 L 244.736384 247.959217 L 245.017165 247.918139 L 245.231888 248.373713 L 244.981686 248.317704 L 244.685976 248.847744 L 244.775658 248.209502 L 244.329784 247.709732 L 243.994985 247.543963 L 243.518677 248.151607 L 242.527874 246.486366 L 243.274361 246.543072 L 243.872653 245.795929 Z ' fill='#3B3B6C' fill-opacity='1' fill-rule='evenodd' stroke='#FFFFFF' stroke-opacity='1' stroke-width='0.21' stroke-linejoin='round' stroke-linecap='butt' title='Orkney&amp;lt;br/&amp;gt;Winter Year: 2023&amp;lt;br/&amp;gt;Items per Head: 17.11'/>\n <path id='svg_52553b2cf052ba37_e402' d='M 244.782714 245.221611 L 244.800207 246.407286 L 244.449964 246.682262 L 244.782714 245.221611 Z ' fill='#3B3B6C' fill-opacity='1' fill-rule='evenodd' stroke='#FFFFFF' stroke-opacity='1' stroke-width='0.21' stroke-linejoin='round' stroke-linecap='butt' title='Orkney&amp;lt;br/&amp;gt;Winter Year: 2023&amp;lt;br/&amp;gt;Items per Head: 17.11'/>\n <path id='svg_52553b2cf052ba37_e403' d='M 244.196172 250.141006 L 244.224228 251.242285 L 243.930322 250.485301 L 244.196172 250.141006 Z ' fill='#3B3B6C' fill-opacity='1' fill-rule='evenodd' stroke='#FFFFFF' stroke-opacity='1' stroke-width='0.21' stroke-linejoin='round' stroke-linecap='butt' title='Orkney&amp;lt;br/&amp;gt;Winter Year: 2023&amp;lt;br/&amp;gt;Items per Head: 17.11'/>\n <path id='svg_52553b2cf052ba37_e404' d='M 243.703971 251.945869 L 243.902862 252.241046 L 243.565847 252.391824 L 243.347617 252.049805 L 243.703971 251.945869 Z ' fill='#3B3B6C' fill-opacity='1' fill-rule='evenodd' stroke='#FFFFFF' stroke-opacity='1' stroke-width='0.21' stroke-linejoin='round' stroke-linecap='butt' title='Orkney&amp;lt;br/&amp;gt;Winter Year: 2023&amp;lt;br/&amp;gt;Items per Head: 17.11'/>\n <path id='svg_52553b2cf052ba37_e405' d='M 242.457880 249.435843 L 242.949036 249.961803 L 243.860676 249.920499 L 243.555756 250.330790 L 243.714737 250.941550 L 242.814890 251.149733 L 242.169818 250.689297 L 241.882311 250.033665 L 242.457880 249.435843 Z ' fill='#3B3B6C' fill-opacity='1' fill-rule='evenodd' stroke='#FFFFFF' stroke-opacity='1' stroke-width='0.21' stroke-linejoin='round' stroke-linecap='butt' title='Orkney&amp;lt;br/&amp;gt;Winter Year: 2023&amp;lt;br/&amp;gt;Items per Head: 17.11'/>\n <path id='svg_52553b2cf052ba37_e406' d='M 243.723762 251.116180 L 243.681432 251.509224 L 243.108510 251.432399 L 243.723762 251.116180 Z ' fill='#3B3B6C' fill-opacity='1' fill-rule='evenodd' stroke='#FFFFFF' stroke-opacity='1' stroke-width='0.21' stroke-linejoin='round' stroke-linecap='butt' title='Orkney&amp;lt;br/&amp;gt;Winter Year: 2023&amp;lt;br/&amp;gt;Items per Head: 17.11'/>\n <path id='svg_52553b2cf052ba37_e407' d='M 242.359645 257.410334 L 241.870848 257.809264 L 242.276852 257.834511 L 242.229949 258.255567 L 241.526182 258.192936 L 241.490294 257.791689 L 242.359645 257.410334 Z ' fill='#3B3B6C' fill-opacity='1' fill-rule='evenodd' stroke='#FFFFFF' stroke-opacity='1' stroke-width='0.21' stroke-linejoin='round' stroke-linecap='butt' title='Orkney&amp;lt;br/&amp;gt;Winter Year: 2023&amp;lt;br/&amp;gt;Items per Head: 17.11'/>\n <path id='svg_52553b2cf052ba37_e408' d='M 239.001884 255.474689 L 240.688312 256.759911 L 240.649263 257.626020 L 241.222494 258.084960 L 240.134421 258.838951 L 241.367672 258.403700 L 241.360188 258.855746 L 241.606863 258.876522 L 240.417805 258.901933 L 240.415693 259.202461 L 239.620438 259.039113 L 238.688536 256.993501 L 238.045023 256.857345 L 238.450228 255.709162 L 239.001884 255.474689 Z ' fill='#3B3B6C' fill-opacity='1' fill-rule='evenodd' stroke='#FFFFFF' stroke-opacity='1' stroke-width='0.21' stroke-linejoin='round' stroke-linecap='butt' title='Orkney&amp;lt;br/&amp;gt;Winter Year: 2023&amp;lt;br/&amp;gt;Items per Head: 17.11'/>\n <path id='svg_52553b2cf052ba37_e409' d='M 239.552576 255.307894 L 240.089672 255.737833 L 239.581248 255.679733 L 239.552576 255.307894 Z ' fill='#3B3B6C' fill-opacity='1' fill-rule='evenodd' stroke='#FFFFFF' stroke-opacity='1' stroke-width='0.21' stroke-linejoin='round' stroke-linecap='butt' title='Orkney&amp;lt;br/&amp;gt;Winter Year: 2023&amp;lt;br/&amp;gt;Items per Head: 17.11'/>\n <path id='svg_52553b2cf052ba37_e410' d='M 269.029807 221.297382 L 269.103904 221.577773 L 268.591440 221.787840 L 269.029807 221.297382 Z ' fill='#3A5692' fill-opacity='1' fill-rule='evenodd' stroke='#FFFFFF' stroke-opacity='1' stroke-width='0.21' stroke-linejoin='round' stroke-linecap='butt' title='Shetland&amp;lt;br/&amp;gt;Winter Year: 2023&amp;lt;br/&amp;gt;Items per Head: 15.46'/>\n <path id='svg_52553b2cf052ba37_e411' d='M 267.552278 211.849567 L 267.584005 212.778885 L 268.022065 211.868825 L 268.862253 212.441543 L 268.369355 212.655138 L 268.641275 213.331710 L 268.027643 213.194693 L 268.619536 214.092161 L 267.685378 215.122914 L 268.100140 215.542661 L 267.835398 215.771904 L 267.191434 215.414852 L 266.801466 215.889519 L 266.428726 215.561896 L 266.386684 214.748636 L 266.748575 214.785326 L 266.600996 214.198293 L 266.946152 213.317046 L 266.689080 213.104681 L 267.552278 211.849567 Z ' fill='#3A5692' fill-opacity='1' fill-rule='evenodd' stroke='#FFFFFF' stroke-opacity='1' stroke-width='0.21' stroke-linejoin='round' stroke-linecap='butt' title='Shetland&amp;lt;br/&amp;gt;Winter Year: 2023&amp;lt;br/&amp;gt;Items per Head: 15.46'/>\n <path id='svg_52553b2cf052ba37_e412' d='M 267.739828 216.696423 L 268.135846 216.809218 L 268.410801 217.473383 L 268.789346 217.104827 L 268.504587 218.172311 L 268.152682 217.724303 L 267.496640 217.638517 L 267.841960 218.166670 L 267.457324 218.317817 L 266.834997 217.250682 L 266.957637 216.766767 L 267.401542 216.995331 L 267.739828 216.696423 Z ' fill='#3A5692' fill-opacity='1' fill-rule='evenodd' stroke='#FFFFFF' stroke-opacity='1' stroke-width='0.21' stroke-linejoin='round' stroke-linecap='butt' title='Shetland&amp;lt;br/&amp;gt;Winter Year: 2023&amp;lt;br/&amp;gt;Items per Head: 15.46'/>\n <path id='svg_52553b2cf052ba37_e413' d='M 267.216639 215.652688 L 267.616983 215.831070 L 267.518542 216.098089 L 267.216639 215.652688 Z ' fill='#3A5692' fill-opacity='1' fill-rule='evenodd' stroke='#FFFFFF' stroke-opacity='1' stroke-width='0.21' stroke-linejoin='round' stroke-linecap='butt' title='Shetland&amp;lt;br/&amp;gt;Winter Year: 2023&amp;lt;br/&amp;gt;Items per Head: 15.46'/>\n <path id='svg_52553b2cf052ba37_e414' d='M 267.320020 222.303114 L 266.590374 223.616269 L 265.919583 223.553799 L 266.303850 222.757110 L 267.320020 222.303114 Z ' fill='#3A5692' fill-opacity='1' fill-rule='evenodd' stroke='#FFFFFF' stroke-opacity='1' stroke-width='0.21' stroke-linejoin='round' stroke-linecap='butt' title='Shetland&amp;lt;br/&amp;gt;Winter Year: 2023&amp;lt;br/&amp;gt;Items per Head: 15.46'/>\n <path id='svg_52553b2cf052ba37_e415' d='M 266.362279 217.029786 L 266.608379 217.216617 L 266.221488 217.560338 L 266.362279 217.029786 Z ' fill='#3A5692' fill-opacity='1' fill-rule='evenodd' stroke='#FFFFFF' stroke-opacity='1' stroke-width='0.21' stroke-linejoin='round' stroke-linecap='butt' title='Shetland&amp;lt;br/&amp;gt;Winter Year: 2023&amp;lt;br/&amp;gt;Items per Head: 15.46'/>\n <path id='svg_52553b2cf052ba37_e416' d='M 265.699446 214.421936 L 266.216299 214.720027 L 266.454976 216.588959 L 265.887262 216.524050 L 265.482058 215.968291 L 266.038143 217.101360 L 265.739027 217.483228 L 265.300372 217.358516 L 266.232050 217.943642 L 266.115870 218.667383 L 265.730517 218.636394 L 266.042880 219.024476 L 265.982154 219.824877 L 265.526355 220.021554 L 264.985896 219.647173 L 265.154230 220.300571 L 264.248312 220.659755 L 264.071387 221.026301 L 264.432950 221.121214 L 264.125733 221.359831 L 264.430899 221.620799 L 264.108403 221.372032 L 263.413784 222.020816 L 264.404443 221.750515 L 264.478786 222.593944 L 264.968219 221.400026 L 265.067993 221.717805 L 265.761176 220.908953 L 264.736782 222.469129 L 264.873265 222.764657 L 265.104804 222.206007 L 265.487697 222.334595 L 265.486774 223.059465 L 265.005954 223.321458 L 264.218390 223.198962 L 264.448023 223.855027 L 264.582763 223.491474 L 264.812889 223.857569 L 265.389872 223.755827 L 265.433144 224.238533 L 264.558071 224.799091 L 264.685469 225.156881 L 265.148488 224.899480 L 265.218011 225.292214 L 264.743447 225.286965 L 264.366913 225.766473 L 264.500401 225.276566 L 264.173005 225.387703 L 264.092119 225.085840 L 264.181106 225.623119 L 263.766630 225.966122 L 264.282724 225.905211 L 263.906212 226.637402 L 264.493962 226.107424 L 263.917757 227.283478 L 264.642751 226.544458 L 264.548084 227.426094 L 264.912375 227.813129 L 264.590085 227.819815 L 264.646237 228.276496 L 264.453602 227.994199 L 264.428336 228.507831 L 264.100632 228.265359 L 264.156189 228.786376 L 263.868599 228.933976 L 264.122001 230.127708 L 264.494475 230.447209 L 264.066833 230.191715 L 263.791856 230.459310 L 264.128809 231.850702 L 263.940338 231.339139 L 263.790072 231.656734 L 263.565875 231.305733 L 263.297706 231.443733 L 263.575493 232.263125 L 263.377217 233.048639 L 263.145555 233.009838 L 263.408309 233.329092 L 263.381073 233.841639 L 263.077877 233.888561 L 263.421577 234.070738 L 263.319650 234.604058 L 263.098077 234.074880 L 262.911122 234.541712 L 262.843321 233.600418 L 262.480446 233.907593 L 262.121241 233.784851 L 261.994191 233.224766 L 262.316769 233.064902 L 262.301408 232.467390 L 262.701690 232.457485 L 262.674209 231.951952 L 262.334939 231.938478 L 262.409795 231.680995 L 262.687745 231.879127 L 262.494802 231.262624 L 262.827244 230.944435 L 263.302566 229.003621 L 263.373198 227.979164 L 262.933169 228.203487 L 263.151174 226.752208 L 262.776587 227.570903 L 263.330314 225.826972 L 262.667072 227.491434 L 263.050969 225.487230 L 262.440352 226.656537 L 262.332704 225.642067 L 261.485871 225.423510 L 262.111397 225.837227 L 262.295563 226.817835 L 262.193944 226.459450 L 261.906723 226.679609 L 261.862282 226.282649 L 261.834431 227.153148 L 261.601559 227.489076 L 261.435645 226.978868 L 261.138888 227.909191 L 260.163508 226.901920 L 260.213036 226.591526 L 260.859974 226.580450 L 260.657761 226.488367 L 261.040305 226.211238 L 260.629664 226.346451 L 260.801750 225.982159 L 260.333995 225.615346 L 260.539839 226.018398 L 260.133565 226.679404 L 259.961459 226.042966 L 259.267907 226.530512 L 258.973303 226.247292 L 259.142825 226.026334 L 258.527573 225.898484 L 258.647834 224.918039 L 258.387480 224.676039 L 259.069897 224.222906 L 259.544974 224.251823 L 259.863984 224.691524 L 259.826350 224.348418 L 260.282376 224.563572 L 260.115518 224.268744 L 260.629152 223.955990 L 260.945699 224.979770 L 261.150271 224.648252 L 260.824803 224.246388 L 261.316492 224.458158 L 261.089053 224.146101 L 261.510296 223.728448 L 262.169149 224.713468 L 262.433482 224.284309 L 262.085659 223.864624 L 262.315046 223.357963 L 262.593982 223.535997 L 262.491623 223.024293 L 263.359251 223.208910 L 262.914506 222.788651 L 262.210269 222.816071 L 262.319148 222.230863 L 262.072022 222.646609 L 261.751864 222.480081 L 261.812591 221.674635 L 261.205541 221.747337 L 261.231791 221.098245 L 261.544319 220.947221 L 261.057162 220.925974 L 261.428159 220.484837 L 261.024451 220.534981 L 261.148241 220.054346 L 260.685345 220.921872 L 260.681079 220.197863 L 260.050282 220.059617 L 259.396494 220.457665 L 259.156442 220.135068 L 259.392905 219.623690 L 259.944212 219.743910 L 259.902437 218.975932 L 260.271383 218.549972 L 260.446525 219.111801 L 261.221230 219.723258 L 261.832175 219.535094 L 261.158371 219.574777 L 260.670272 218.972855 L 261.376888 218.141752 L 261.379863 217.057473 L 262.489551 217.535155 L 262.387133 216.900891 L 264.171468 216.718469 L 264.466378 216.195812 L 264.529646 217.019512 L 265.012004 217.379967 L 264.602759 216.876691 L 264.779747 214.608460 L 265.239852 214.548269 L 265.382386 215.049802 L 265.336139 214.488590 L 265.738494 214.683830 L 265.699446 214.421936 Z ' fill='#3A5692' fill-opacity='1' fill-rule='evenodd' stroke='#FFFFFF' stroke-opacity='1' stroke-width='0.21' stroke-linejoin='round' stroke-linecap='butt' title='Shetland&amp;lt;br/&amp;gt;Winter Year: 2023&amp;lt;br/&amp;gt;Items per Head: 15.46'/>\n <path id='svg_52553b2cf052ba37_e417' d='M 265.996921 227.654476 L 266.346487 227.739586 L 266.297472 228.181953 L 265.996921 227.654476 Z ' fill='#3A5692' fill-opacity='1' fill-rule='evenodd' stroke='#FFFFFF' stroke-opacity='1' stroke-width='0.21' stroke-linejoin='round' stroke-linecap='butt' title='Shetland&amp;lt;br/&amp;gt;Winter Year: 2023&amp;lt;br/&amp;gt;Items per Head: 15.46'/>\n <path id='svg_52553b2cf052ba37_e418' d='M 265.624898 226.778972 L 265.538352 227.488871 L 265.895609 227.397710 L 265.596187 228.854732 L 265.027488 228.469891 L 265.120659 227.797768 L 264.715104 227.262601 L 264.924125 226.999541 L 265.506155 227.292914 L 265.372235 226.960163 L 265.624898 226.778972 Z ' fill='#3A5692' fill-opacity='1' fill-rule='evenodd' stroke='#FFFFFF' stroke-opacity='1' stroke-width='0.21' stroke-linejoin='round' stroke-linecap='butt' title='Shetland&amp;lt;br/&amp;gt;Winter Year: 2023&amp;lt;br/&amp;gt;Items per Head: 15.46'/>\n <path id='svg_52553b2cf052ba37_e419' d='M 262.992028 229.013569 L 262.600728 230.317801 L 262.639490 229.446747 L 262.992028 229.013569 Z ' fill='#3A5692' fill-opacity='1' fill-rule='evenodd' stroke='#FFFFFF' stroke-opacity='1' stroke-width='0.21' stroke-linejoin='round' stroke-linecap='butt' title='Shetland&amp;lt;br/&amp;gt;Winter Year: 2023&amp;lt;br/&amp;gt;Items per Head: 15.46'/>\n <path id='svg_52553b2cf052ba37_e420' d='M 262.657093 229.013514 L 262.708808 229.067300 L 262.221630 230.302625 L 262.657093 229.013514 Z ' fill='#3A5692' fill-opacity='1' fill-rule='evenodd' stroke='#FFFFFF' stroke-opacity='1' stroke-width='0.21' stroke-linejoin='round' stroke-linecap='butt' title='Shetland&amp;lt;br/&amp;gt;Winter Year: 2023&amp;lt;br/&amp;gt;Items per Head: 15.46'/>\n <path id='svg_52553b2cf052ba37_e421' d='M 262.719283 228.829413 L 262.821194 228.527724 L 262.764529 228.834776 L 262.719283 228.829413 Z ' fill='#3A5692' fill-opacity='1' fill-rule='evenodd' stroke='#FFFFFF' stroke-opacity='1' stroke-width='0.21' stroke-linejoin='round' stroke-linecap='butt' title='Shetland&amp;lt;br/&amp;gt;Winter Year: 2023&amp;lt;br/&amp;gt;Items per Head: 15.46'/>\n <path id='svg_52553b2cf052ba37_e422' d='M 261.492761 222.330083 L 262.054404 222.838814 L 261.457794 223.370679 L 260.954416 222.702003 L 261.492761 222.330083 Z ' fill='#3A5692' fill-opacity='1' fill-rule='evenodd' stroke='#FFFFFF' stroke-opacity='1' stroke-width='0.21' stroke-linejoin='round' stroke-linecap='butt' title='Shetland&amp;lt;br/&amp;gt;Winter Year: 2023&amp;lt;br/&amp;gt;Items per Head: 15.46'/>\n <path id='svg_52553b2cf052ba37_e423' d='M 260.976256 223.453021 L 261.391347 223.776849 L 260.995433 224.148974 L 260.976256 223.453021 Z ' fill='#3A5692' fill-opacity='1' fill-rule='evenodd' stroke='#FFFFFF' stroke-opacity='1' stroke-width='0.21' stroke-linejoin='round' stroke-linecap='butt' title='Shetland&amp;lt;br/&amp;gt;Winter Year: 2023&amp;lt;br/&amp;gt;Items per Head: 15.46'/>\n <path id='svg_52553b2cf052ba37_e424' d='M 259.743292 226.468168 L 259.928482 226.863877 L 259.509187 226.712218 L 259.743292 226.468168 Z ' fill='#3A5692' fill-opacity='1' fill-rule='evenodd' stroke='#FFFFFF' stroke-opacity='1' stroke-width='0.21' stroke-linejoin='round' stroke-linecap='butt' title='Shetland&amp;lt;br/&amp;gt;Winter Year: 2023&amp;lt;br/&amp;gt;Items per Head: 15.46'/>\n <path id='svg_52553b2cf052ba37_e425' d='M 259.566304 241.458585 L 259.562817 242.150640 L 259.027035 242.403941 L 259.198690 241.493347 L 259.566304 241.458585 Z ' fill='#3A5692' fill-opacity='1' fill-rule='evenodd' stroke='#FFFFFF' stroke-opacity='1' stroke-width='0.21' stroke-linejoin='round' stroke-linecap='butt' title='Shetland&amp;lt;br/&amp;gt;Winter Year: 2023&amp;lt;br/&amp;gt;Items per Head: 15.46'/>\n <path id='svg_52553b2cf052ba37_e426' d='M 258.208851 223.356220 L 258.573964 223.693707 L 258.768013 223.426360 L 258.814445 223.931462 L 258.211621 223.968295 L 257.981208 223.573713 L 258.208851 223.356220 Z ' fill='#3A5692' fill-opacity='1' fill-rule='evenodd' stroke='#FFFFFF' stroke-opacity='1' stroke-width='0.21' stroke-linejoin='round' stroke-linecap='butt' title='Shetland&amp;lt;br/&amp;gt;Winter Year: 2023&amp;lt;br/&amp;gt;Items per Head: 15.46'/>\n <path id='svg_52553b2cf052ba37_e427' d='M 254.185410 227.673037 L 254.571172 228.088640 L 254.289694 228.773312 L 253.684901 228.224098 L 254.185410 227.673037 Z ' fill='#3A5692' fill-opacity='1' fill-rule='evenodd' stroke='#FFFFFF' stroke-opacity='1' stroke-width='0.21' stroke-linejoin='round' stroke-linecap='butt' title='Shetland&amp;lt;br/&amp;gt;Winter Year: 2023&amp;lt;br/&amp;gt;Items per Head: 15.46'/>\n <path id='svg_52553b2cf052ba37_e428' d='M 210.140009 249.751263 L 210.267058 250.116312 L 209.932873 250.171686 L 210.140009 249.751263 Z ' fill='#3B4F88' fill-opacity='1' fill-rule='evenodd' stroke='#FFFFFF' stroke-opacity='1' stroke-width='0.21' stroke-linejoin='round' stroke-linecap='butt' title='Western Isles&amp;lt;br/&amp;gt;Winter Year: 2023&amp;lt;br/&amp;gt;Items per Head: 15.9'/>\n <path id='svg_52553b2cf052ba37_e429' d='M 198.365033 274.086205 L 197.381747 275.026792 L 197.757747 275.827605 L 197.465052 276.000532 L 197.909694 276.005926 L 198.268407 276.761455 L 197.785742 276.887685 L 198.311270 277.681361 L 196.662296 277.212458 L 196.950126 277.562616 L 196.522629 277.562514 L 196.604087 277.894093 L 196.967374 277.920960 L 197.357937 278.880999 L 196.622094 278.665169 L 196.650498 279.344900 L 195.868308 278.610493 L 196.155815 279.075091 L 195.981412 279.338747 L 195.794047 279.096563 L 195.822368 279.649039 L 195.521675 279.464875 L 195.610517 279.971841 L 195.013435 279.755129 L 195.275922 280.170158 L 194.802507 280.269501 L 194.678000 280.708811 L 194.310899 280.608669 L 194.294800 280.903128 L 192.541741 278.282770 L 193.145919 278.400487 L 193.167761 278.810450 L 193.879895 278.440111 L 194.300747 277.707815 L 194.697277 277.713250 L 194.891800 276.881635 L 196.512395 277.113871 L 195.922348 276.554730 L 196.156493 276.338817 L 195.380638 276.238880 L 195.543661 275.962961 L 195.286279 276.142614 L 194.381037 275.494137 L 194.424209 275.751313 L 194.083461 275.779512 L 193.415091 275.381753 L 193.341363 274.752452 L 193.042557 274.860531 L 193.452212 274.135559 L 193.827619 274.427907 L 194.146524 273.960108 L 195.626001 273.621618 L 194.015989 273.908735 L 193.760249 273.709086 L 194.277265 273.455192 L 193.820646 273.392641 L 194.231020 272.837479 L 193.792139 273.264156 L 193.483282 273.159257 L 192.998361 271.790833 L 193.598539 270.982289 L 193.495690 270.430100 L 194.258602 270.467876 L 193.993019 270.163694 L 194.568690 269.110894 L 194.524063 269.383699 L 195.103036 269.705126 L 195.320323 269.362022 L 195.907480 269.914416 L 195.860884 270.146816 L 195.236055 270.100796 L 196.046834 270.530386 L 196.284628 272.181107 L 196.103335 270.708910 L 196.292319 270.902099 L 196.214387 270.531719 L 196.443057 270.685941 L 196.555524 270.274666 L 197.781456 270.531329 L 197.926225 271.134973 L 198.132437 271.048325 L 198.270028 270.743364 L 197.700776 270.481370 L 197.930572 270.096714 L 197.156134 269.091823 L 197.073485 268.620539 L 197.599853 268.505856 L 197.010831 268.460062 L 197.306563 267.937610 L 197.883875 267.927252 L 199.221248 266.915654 L 199.350636 267.190323 L 200.488689 266.760877 L 200.857799 266.059860 L 203.574528 264.321033 L 204.145790 263.535027 L 205.025416 264.732554 L 204.830484 265.186304 L 205.103246 265.870976 L 204.499888 266.924083 L 205.070227 267.580558 L 204.182193 268.104199 L 203.535193 269.166678 L 203.081035 269.209356 L 202.838050 269.976268 L 203.400925 270.550257 L 205.020494 269.374571 L 205.275085 269.502954 L 205.004026 270.356719 L 203.899628 271.226769 L 203.354267 270.614940 L 202.656550 270.991947 L 202.145585 270.400197 L 202.326509 271.752788 L 201.651229 272.019315 L 202.289594 271.976535 L 202.262010 272.236173 L 200.861184 271.910949 L 201.625429 272.391317 L 201.061223 272.806551 L 199.082592 273.132226 L 201.456091 273.131570 L 201.885579 272.656799 L 201.871326 273.281077 L 202.103276 273.118137 L 202.200279 273.493542 L 202.096712 274.124176 L 201.365137 274.080780 L 202.269804 274.344642 L 201.852252 275.225376 L 201.274858 274.807517 L 201.113253 275.041620 L 201.007202 274.734506 L 199.645137 274.970271 L 200.802837 275.122629 L 201.078470 275.436509 L 200.745311 276.578828 L 200.149028 276.787604 L 199.841197 276.083038 L 199.870422 277.013605 L 199.495529 276.798062 L 199.411853 277.118199 L 198.722361 275.890361 L 199.082796 276.932188 L 198.763378 276.685985 L 198.537375 276.888812 L 197.986621 275.865853 L 197.917263 274.725483 L 198.365033 274.086205 Z M 198.488113 273.910485 L 198.582494 273.775739 L 199.514848 273.848728 L 198.295027 273.659168 L 198.488113 273.910485 Z ' fill='#3B4F88' fill-opacity='1' fill-rule='evenodd' stroke='#FFFFFF' stroke-opacity='1' stroke-width='0.21' stroke-linejoin='round' stroke-linecap='butt' title='Western Isles&amp;lt;br/&amp;gt;Winter Year: 2023&amp;lt;br/&amp;gt;Items per Head: 15.9'/>\n <path id='svg_52553b2cf052ba37_e430' d='M 197.840540 277.710872 L 198.477695 277.944175 L 198.560550 278.287178 L 197.951367 278.367489 L 197.840540 277.710872 Z ' fill='#3B4F88' fill-opacity='1' fill-rule='evenodd' stroke='#FFFFFF' stroke-opacity='1' stroke-width='0.21' stroke-linejoin='round' stroke-linecap='butt' title='Western Isles&amp;lt;br/&amp;gt;Winter Year: 2023&amp;lt;br/&amp;gt;Items per Head: 15.9'/>\n <path id='svg_52553b2cf052ba37_e431' d='M 196.191417 268.837415 L 196.683414 268.965080 L 196.799882 269.547088 L 197.048363 269.380888 L 197.392903 270.315150 L 196.391292 270.092860 L 196.585692 269.683120 L 196.191417 268.837415 Z ' fill='#3B4F88' fill-opacity='1' fill-rule='evenodd' stroke='#FFFFFF' stroke-opacity='1' stroke-width='0.21' stroke-linejoin='round' stroke-linecap='butt' title='Western Isles&amp;lt;br/&amp;gt;Winter Year: 2023&amp;lt;br/&amp;gt;Items per Head: 15.9'/>\n <path id='svg_52553b2cf052ba37_e432' d='M 194.206716 276.473927 L 194.451793 277.165062 L 194.106021 277.431773 L 193.689186 277.076054 L 193.287428 277.488274 L 193.210110 277.049495 L 194.206716 276.473927 Z ' fill='#3B4F88' fill-opacity='1' fill-rule='evenodd' stroke='#FFFFFF' stroke-opacity='1' stroke-width='0.21' stroke-linejoin='round' stroke-linecap='butt' title='Western Isles&amp;lt;br/&amp;gt;Winter Year: 2023&amp;lt;br/&amp;gt;Items per Head: 15.9'/>\n <path id='svg_52553b2cf052ba37_e433' d='M 192.922070 273.708265 L 193.197600 274.517896 L 192.606651 274.372431 L 192.407924 273.951290 L 192.922070 273.708265 Z ' fill='#3B4F88' fill-opacity='1' fill-rule='evenodd' stroke='#FFFFFF' stroke-opacity='1' stroke-width='0.21' stroke-linejoin='round' stroke-linecap='butt' title='Western Isles&amp;lt;br/&amp;gt;Winter Year: 2023&amp;lt;br/&amp;gt;Items per Head: 15.9'/>\n <path id='svg_52553b2cf052ba37_e434' d='M 193.086322 279.775659 L 193.102543 280.310232 L 192.837165 279.895244 L 193.086322 279.775659 Z ' fill='#3B4F88' fill-opacity='1' fill-rule='evenodd' stroke='#FFFFFF' stroke-opacity='1' stroke-width='0.21' stroke-linejoin='round' stroke-linecap='butt' title='Western Isles&amp;lt;br/&amp;gt;Winter Year: 2023&amp;lt;br/&amp;gt;Items per Head: 15.9'/>\n <path id='svg_52553b2cf052ba37_e435' d='M 189.011731 287.660116 L 189.494776 287.967129 L 189.244625 287.653760 L 188.516371 287.421091 L 188.493709 286.370465 L 189.476862 285.858269 L 189.600099 285.920887 L 189.441280 285.711120 L 190.212294 285.733681 L 189.429897 285.681485 L 189.734160 285.233050 L 189.428892 284.827085 L 189.410005 285.647135 L 188.955846 285.893338 L 189.003221 285.303207 L 188.564852 284.729792 L 188.837102 284.376946 L 188.535423 284.696365 L 188.178474 284.156869 L 188.624532 284.056995 L 189.526574 284.547576 L 188.609868 284.022971 L 187.734877 284.161443 L 187.065400 283.173286 L 187.471714 283.050052 L 187.818654 281.989870 L 188.384379 281.954267 L 188.926415 282.426801 L 188.450109 282.004594 L 189.284903 281.873792 L 189.257095 282.068918 L 189.683792 281.940547 L 190.076323 281.305402 L 190.201599 282.015770 L 190.340984 281.926396 L 190.539484 282.317717 L 190.389794 281.874920 L 190.696989 282.036896 L 190.759048 281.551503 L 191.383509 281.607983 L 191.659639 281.361524 L 191.553441 281.571724 L 192.017444 282.191877 L 191.594561 282.466691 L 192.224476 282.762934 L 192.636675 282.571406 L 191.970480 282.345589 L 192.436020 282.250736 L 193.077524 282.846917 L 192.555584 283.551380 L 192.179829 283.105569 L 192.429847 282.981184 L 192.024723 283.182537 L 191.791441 282.915414 L 191.852761 283.220170 L 191.419727 282.792056 L 191.825177 282.671364 L 191.158859 282.734428 L 191.520258 282.932027 L 191.354345 283.179193 L 191.936538 283.353473 L 191.557624 283.392010 L 191.928028 283.486307 L 191.525140 283.813376 L 192.518157 283.860441 L 192.278311 284.484000 L 190.558522 284.635620 L 191.980631 284.712361 L 192.026570 285.213074 L 191.573557 285.626135 L 190.881585 285.472198 L 191.202542 285.765468 L 190.505564 285.733064 L 190.240676 285.441395 L 190.379334 285.804331 L 190.984537 285.769468 L 191.047191 286.534533 L 190.282371 286.013087 L 189.917292 286.082059 L 190.396337 286.325470 L 190.275274 286.618413 L 190.508887 286.401106 L 191.065648 286.815910 L 190.642663 286.762792 L 190.830725 287.128559 L 190.451934 286.917426 L 190.423018 287.244329 L 190.262745 286.973414 L 190.112314 287.238383 L 190.996842 287.554622 L 190.562680 287.850250 L 191.028528 287.893318 L 190.478595 287.913417 L 190.617027 288.191306 L 189.603932 287.679661 L 190.222445 288.205867 L 189.838888 288.185839 L 189.862009 288.200534 L 189.438634 288.213168 L 190.074476 288.606602 L 189.685535 288.739392 L 190.441474 289.302452 L 189.988239 289.271462 L 190.117688 289.464795 L 190.628615 289.335571 L 190.124663 289.731717 L 190.503616 289.904784 L 190.556835 290.413187 L 190.899632 290.497887 L 190.072427 291.331861 L 189.828786 292.139380 L 189.459177 292.081286 L 189.884570 292.469770 L 190.006594 293.539386 L 189.688099 293.836964 L 189.059126 293.456203 L 189.419746 293.870186 L 188.956441 293.576055 L 188.683351 293.737723 L 188.838538 294.070431 L 189.944555 294.169507 L 189.974130 294.548072 L 190.336882 294.622025 L 190.093550 295.109202 L 189.474504 294.771941 L 188.285098 294.785928 L 187.824765 294.137638 L 187.863978 292.160422 L 187.487115 291.566908 L 187.915741 291.305466 L 187.805139 290.537795 L 188.327510 290.165301 L 188.098409 288.258040 L 189.011731 287.660116 Z M 190.517962 284.633431 L 190.601707 284.255720 L 190.016931 284.606394 L 190.517962 284.633431 Z M 189.433401 292.057747 L 189.589453 292.034684 L 189.423334 291.797812 L 188.858245 291.948733 L 188.708535 291.650745 L 188.818091 291.983844 L 189.333816 291.966802 L 189.433401 292.057747 Z ' fill='#3B4F88' fill-opacity='1' fill-rule='evenodd' stroke='#FFFFFF' stroke-opacity='1' stroke-width='0.21' stroke-linejoin='round' stroke-linecap='butt' title='Western Isles&amp;lt;br/&amp;gt;Winter Year: 2023&amp;lt;br/&amp;gt;Items per Head: 15.9'/>\n <path id='svg_52553b2cf052ba37_e436' d='M 191.686235 281.308882 L 191.122456 281.154254 L 191.542162 280.551717 L 192.025155 280.499626 L 192.462989 281.248081 L 191.868737 280.947654 L 191.686235 281.308882 Z ' fill='#3B4F88' fill-opacity='1' fill-rule='evenodd' stroke='#FFFFFF' stroke-opacity='1' stroke-width='0.21' stroke-linejoin='round' stroke-linecap='butt' title='Western Isles&amp;lt;br/&amp;gt;Winter Year: 2023&amp;lt;br/&amp;gt;Items per Head: 15.9'/>\n <path id='svg_52553b2cf052ba37_e437' d='M 191.349792 285.858781 L 191.650958 286.155537 L 191.321491 286.651145 L 191.030189 286.134497 L 191.410395 286.140464 L 191.150348 285.945532 L 191.349792 285.858781 Z ' fill='#3B4F88' fill-opacity='1' fill-rule='evenodd' stroke='#FFFFFF' stroke-opacity='1' stroke-width='0.21' stroke-linejoin='round' stroke-linecap='butt' title='Western Isles&amp;lt;br/&amp;gt;Winter Year: 2023&amp;lt;br/&amp;gt;Items per Head: 15.9'/>\n <path id='svg_52553b2cf052ba37_e438' d='M 191.286832 279.383148 L 191.640909 279.741122 L 191.066982 279.972766 L 190.790016 279.671393 L 191.286832 279.383148 Z ' fill='#3B4F88' fill-opacity='1' fill-rule='evenodd' stroke='#FFFFFF' stroke-opacity='1' stroke-width='0.21' stroke-linejoin='round' stroke-linecap='butt' title='Western Isles&amp;lt;br/&amp;gt;Winter Year: 2023&amp;lt;br/&amp;gt;Items per Head: 15.9'/>\n <path id='svg_52553b2cf052ba37_e439' d='M 191.123379 287.959355 L 191.114458 288.326557 L 190.721619 288.401004 L 190.904247 288.506725 L 190.539915 288.361422 L 191.123379 287.959355 Z ' fill='#3B4F88' fill-opacity='1' fill-rule='evenodd' stroke='#FFFFFF' stroke-opacity='1' stroke-width='0.21' stroke-linejoin='round' stroke-linecap='butt' title='Western Isles&amp;lt;br/&amp;gt;Winter Year: 2023&amp;lt;br/&amp;gt;Items per Head: 15.9'/>\n <path id='svg_52553b2cf052ba37_e440' d='M 190.450602 280.804177 L 190.523407 281.289814 L 190.277818 281.112418 L 190.450602 280.804177 Z ' fill='#3B4F88' fill-opacity='1' fill-rule='evenodd' stroke='#FFFFFF' stroke-opacity='1' stroke-width='0.21' stroke-linejoin='round' stroke-linecap='butt' title='Western Isles&amp;lt;br/&amp;gt;Winter Year: 2023&amp;lt;br/&amp;gt;Items per Head: 15.9'/>\n <path id='svg_52553b2cf052ba37_e441' d='M 190.235345 288.101355 L 190.491577 288.175472 L 190.282391 288.428465 L 190.235345 288.101355 Z ' fill='#3B4F88' fill-opacity='1' fill-rule='evenodd' stroke='#FFFFFF' stroke-opacity='1' stroke-width='0.21' stroke-linejoin='round' stroke-linecap='butt' title='Western Isles&amp;lt;br/&amp;gt;Winter Year: 2023&amp;lt;br/&amp;gt;Items per Head: 15.9'/>\n <path id='svg_52553b2cf052ba37_e442' d='M 188.985480 295.011686 L 189.587197 295.175034 L 189.219051 296.031281 L 188.985480 295.011686 Z ' fill='#3B4F88' fill-opacity='1' fill-rule='evenodd' stroke='#FFFFFF' stroke-opacity='1' stroke-width='0.21' stroke-linejoin='round' stroke-linecap='butt' title='Western Isles&amp;lt;br/&amp;gt;Winter Year: 2023&amp;lt;br/&amp;gt;Items per Head: 15.9'/>\n <path id='svg_52553b2cf052ba37_e443' d='M 188.779741 296.598503 L 188.814645 296.860826 L 188.470207 296.715625 L 188.779741 296.598503 Z ' fill='#3B4F88' fill-opacity='1' fill-rule='evenodd' stroke='#FFFFFF' stroke-opacity='1' stroke-width='0.21' stroke-linejoin='round' stroke-linecap='butt' title='Western Isles&amp;lt;br/&amp;gt;Winter Year: 2023&amp;lt;br/&amp;gt;Items per Head: 15.9'/>\n <path id='svg_52553b2cf052ba37_e444' d='M 188.428369 296.726086 L 188.672111 297.048991 L 188.275787 296.880103 L 188.428369 296.726086 Z ' fill='#3B4F88' fill-opacity='1' fill-rule='evenodd' stroke='#FFFFFF' stroke-opacity='1' stroke-width='0.21' stroke-linejoin='round' stroke-linecap='butt' title='Western Isles&amp;lt;br/&amp;gt;Winter Year: 2023&amp;lt;br/&amp;gt;Items per Head: 15.9'/>\n <path id='svg_52553b2cf052ba37_e445' d='M 188.034505 295.708356 L 188.236307 295.960917 L 187.899149 296.159439 L 188.034505 295.708356 Z ' fill='#3B4F88' fill-opacity='1' fill-rule='evenodd' stroke='#FFFFFF' stroke-opacity='1' stroke-width='0.21' stroke-linejoin='round' stroke-linecap='butt' title='Western Isles&amp;lt;br/&amp;gt;Winter Year: 2023&amp;lt;br/&amp;gt;Items per Head: 15.9'/>\n <path id='svg_52553b2cf052ba37_e446' d='M 187.275796 295.718507 L 187.622410 295.914343 L 187.482213 296.678321 L 187.906431 297.079240 L 187.453009 296.814005 L 187.721896 297.056538 L 187.417633 297.048786 L 188.033788 297.597179 L 187.536479 297.276675 L 187.701858 297.574190 L 187.213512 297.933579 L 187.247906 298.255910 L 186.659005 298.348095 L 186.406159 297.976954 L 186.394447 298.236018 L 186.056900 298.186101 L 185.936249 298.369158 L 186.644957 298.604758 L 186.206057 298.513413 L 185.979789 298.762242 L 186.342357 298.906642 L 185.760943 299.037897 L 185.830978 298.602196 L 185.389125 298.430335 L 185.586519 298.101687 L 186.049455 298.187269 L 185.675320 297.948488 L 186.333210 297.468099 L 186.465079 296.882545 L 186.208949 296.693169 L 187.051435 296.567864 L 187.275796 295.718507 Z ' fill='#3B4F88' fill-opacity='1' fill-rule='evenodd' stroke='#FFFFFF' stroke-opacity='1' stroke-width='0.21' stroke-linejoin='round' stroke-linecap='butt' title='Western Isles&amp;lt;br/&amp;gt;Winter Year: 2023&amp;lt;br/&amp;gt;Items per Head: 15.9'/>\n <path id='svg_52553b2cf052ba37_e447' d='M 186.030321 299.218473 L 186.469816 299.633359 L 185.920293 299.557989 L 186.030321 299.218473 Z ' fill='#3B4F88' fill-opacity='1' fill-rule='evenodd' stroke='#FFFFFF' stroke-opacity='1' stroke-width='0.21' stroke-linejoin='round' stroke-linecap='butt' title='Western Isles&amp;lt;br/&amp;gt;Winter Year: 2023&amp;lt;br/&amp;gt;Items per Head: 15.9'/>\n <path id='svg_52553b2cf052ba37_e448' d='M 185.727105 284.651350 L 185.914756 284.960514 L 186.346048 284.846692 L 186.062827 285.294799 L 185.986432 284.995686 L 185.281559 284.995069 L 185.727105 284.651350 Z ' fill='#3B4F88' fill-opacity='1' fill-rule='evenodd' stroke='#FFFFFF' stroke-opacity='1' stroke-width='0.21' stroke-linejoin='round' stroke-linecap='butt' title='Western Isles&amp;lt;br/&amp;gt;Winter Year: 2023&amp;lt;br/&amp;gt;Items per Head: 15.9'/>\n <path id='svg_52553b2cf052ba37_e449' d='M 185.326369 300.107410 L 185.657580 300.427135 L 185.037817 300.356383 L 185.326369 300.107410 Z ' fill='#3B4F88' fill-opacity='1' fill-rule='evenodd' stroke='#FFFFFF' stroke-opacity='1' stroke-width='0.21' stroke-linejoin='round' stroke-linecap='butt' title='Western Isles&amp;lt;br/&amp;gt;Winter Year: 2023&amp;lt;br/&amp;gt;Items per Head: 15.9'/>\n <path id='svg_52553b2cf052ba37_e450' d='M 184.357758 301.657128 L 184.750186 301.827655 L 184.135139 301.748596 L 184.357758 301.657128 Z ' fill='#3B4F88' fill-opacity='1' fill-rule='evenodd' stroke='#FFFFFF' stroke-opacity='1' stroke-width='0.21' stroke-linejoin='round' stroke-linecap='butt' title='Western Isles&amp;lt;br/&amp;gt;Winter Year: 2023&amp;lt;br/&amp;gt;Items per Head: 15.9'/>\n <path id='svg_52553b2cf052ba37_e451' d='M 184.679246 300.780004 L 184.657283 301.395236 L 184.094737 301.413385 L 184.221992 300.901599 L 184.679246 300.780004 Z ' fill='#3B4F88' fill-opacity='1' fill-rule='evenodd' stroke='#FFFFFF' stroke-opacity='1' stroke-width='0.21' stroke-linejoin='round' stroke-linecap='butt' title='Western Isles&amp;lt;br/&amp;gt;Winter Year: 2023&amp;lt;br/&amp;gt;Items per Head: 15.9'/>\n <path id='svg_52553b2cf052ba37_e452' d='M 174.521205 276.933930 L 175.129485 277.054008 L 175.285555 277.366249 L 174.972391 277.559233 L 175.225772 277.790158 L 174.541714 277.364709 L 174.521205 276.933930 Z ' fill='#3B4F88' fill-opacity='1' fill-rule='evenodd' stroke='#FFFFFF' stroke-opacity='1' stroke-width='0.21' stroke-linejoin='round' stroke-linecap='butt' title='Western Isles&amp;lt;br/&amp;gt;Winter Year: 2023&amp;lt;br/&amp;gt;Items per Head: 15.9'/>\n <path id='svg_52553b2cf052ba37_e453' d='M 243.748331 312.183008 L 246.122836 312.384154 L 245.215954 312.450910 L 245.106226 312.677376 L 244.812246 312.335653 L 244.878112 314.619771 L 246.670123 315.275779 L 247.597451 316.162871 L 247.345218 316.617992 L 244.740877 318.360489 L 243.959608 318.269864 L 243.023214 317.652909 L 240.348447 319.858938 L 240.050603 321.064852 L 238.714213 321.162452 L 238.156733 321.670054 L 237.344723 321.839434 L 237.235864 322.293592 L 236.298178 322.133053 L 236.301849 321.782995 L 235.950726 321.648090 L 233.182315 321.055091 L 232.813554 320.580381 L 233.121036 319.982234 L 234.250168 319.841812 L 233.809196 319.542102 L 234.875306 319.197110 L 235.040315 318.750007 L 236.968866 319.262900 L 237.567670 319.105580 L 237.553088 318.681508 L 237.891456 318.493159 L 238.513230 318.559073 L 238.359295 318.219864 L 238.977070 317.984038 L 238.937181 317.437223 L 238.616715 317.318786 L 238.750799 317.118890 L 237.641048 316.962513 L 237.828310 316.612024 L 237.448783 316.296031 L 238.069244 315.836335 L 238.599982 315.863489 L 238.522992 315.284925 L 239.099566 314.699287 L 238.838330 314.448243 L 243.748331 312.183008 Z ' fill='#0B0405' fill-opacity='1' fill-rule='evenodd' stroke='#FFFFFF' stroke-opacity='1' stroke-width='0.21' stroke-linejoin='round' stroke-linecap='butt' title='Fife&amp;lt;br/&amp;gt;Winter Year: 2023&amp;lt;br/&amp;gt;Items per Head: 21.4'/>\n <path id='svg_52553b2cf052ba37_e454' d='M 244.122035 300.158886 L 245.481948 300.644833 L 246.448201 301.675894 L 246.761467 302.348980 L 246.634172 303.339515 L 247.301638 304.688804 L 248.378822 304.656811 L 249.226435 305.523271 L 249.740518 305.373170 L 249.510640 306.906953 L 248.797870 307.448251 L 248.721107 308.128864 L 249.003754 308.317522 L 248.267276 309.620811 L 246.141313 311.194953 L 245.824808 312.021382 L 244.807405 311.670216 L 242.002510 312.205915 L 242.255871 312.319655 L 241.393391 312.521047 L 241.418206 312.976950 L 241.102479 313.137017 L 241.336684 313.178035 L 240.998050 313.169135 L 241.228913 313.259042 L 238.988512 314.166397 L 239.512584 314.158829 L 238.838330 314.448243 L 239.099566 314.699287 L 238.522992 315.284925 L 238.599982 315.863489 L 238.069244 315.836335 L 237.448783 316.296031 L 237.828310 316.612024 L 237.641048 316.962513 L 238.750799 317.118890 L 238.977070 317.984038 L 238.359295 318.219864 L 238.513230 318.559073 L 237.553088 318.681508 L 237.567670 319.105580 L 235.400730 319.045676 L 235.102415 318.734133 L 234.875306 319.197110 L 234.121847 319.310419 L 234.033824 318.712313 L 234.737899 318.422876 L 234.978852 317.902928 L 234.436795 317.672906 L 233.806817 318.045707 L 232.917674 318.014123 L 232.373587 317.356726 L 231.654255 317.831292 L 231.535511 317.134927 L 231.198660 317.388720 L 230.860415 316.930869 L 230.352420 317.055662 L 229.558295 315.961335 L 229.144475 316.082189 L 228.638902 315.591875 L 228.203305 315.799215 L 227.256943 315.222313 L 226.651228 314.631876 L 226.651536 313.371327 L 227.212439 313.336770 L 227.193572 311.711375 L 227.691619 312.026282 L 228.505804 311.580532 L 227.832204 310.533065 L 226.008392 311.279059 L 225.624268 309.804504 L 225.204359 309.605676 L 224.732256 310.045991 L 223.588707 310.351054 L 223.389775 310.083418 L 223.108296 310.495023 L 222.493250 310.464772 L 221.760895 311.180105 L 221.148206 310.842332 L 221.546786 309.953600 L 221.031513 309.362856 L 222.274118 308.823996 L 222.770830 308.926232 L 221.863847 307.744947 L 221.961262 307.021411 L 221.516332 307.352006 L 220.873804 307.268946 L 220.878212 306.486140 L 221.629846 306.557817 L 222.469254 306.168568 L 222.553749 304.647561 L 223.104297 304.382902 L 223.461246 303.644494 L 224.420528 304.397155 L 225.313566 303.093845 L 225.854476 303.302723 L 226.207835 302.687163 L 227.529294 302.295554 L 227.870555 301.363755 L 228.338146 301.709116 L 230.135401 301.903742 L 230.839454 300.609866 L 231.357806 301.212095 L 232.278428 300.883858 L 232.759043 301.245525 L 233.299541 301.019009 L 233.667668 301.485780 L 234.112699 301.065974 L 235.263222 301.125550 L 235.518756 302.203246 L 235.811924 302.023715 L 236.701271 302.487308 L 237.156250 302.183272 L 237.871686 302.470390 L 238.976679 301.746238 L 238.993394 301.260393 L 241.024239 302.211984 L 241.513980 300.621864 L 244.122035 300.158886 Z ' fill='#34274D' fill-opacity='1' fill-rule='evenodd' stroke='#FFFFFF' stroke-opacity='1' stroke-width='0.21' stroke-linejoin='round' stroke-linecap='butt' title='Tayside&amp;lt;br/&amp;gt;Winter Year: 2023&amp;lt;br/&amp;gt;Items per Head: 18.48'/>\n <path id='svg_52553b2cf052ba37_e455' d='M 222.025864 320.325627 L 223.413237 320.643794 L 223.102554 320.943360 L 223.284177 321.774607 L 224.126130 322.722444 L 224.742939 322.536555 L 225.125443 323.029250 L 225.749001 323.087391 L 225.921231 322.283564 L 225.673489 321.534391 L 226.918082 321.929754 L 227.384096 321.483736 L 227.984253 322.719881 L 227.837536 323.261263 L 228.766486 323.033701 L 228.491405 323.490629 L 228.650551 323.961480 L 226.893247 324.144867 L 227.258030 324.831017 L 228.316080 324.850437 L 228.381255 325.766733 L 228.021271 325.796736 L 227.903491 326.168205 L 227.110370 326.210904 L 226.725980 325.710663 L 226.366304 325.838922 L 226.685784 326.711904 L 225.656098 327.396086 L 226.406050 328.460308 L 226.383491 329.190079 L 226.010340 329.516677 L 224.691956 328.999863 L 224.308675 328.402761 L 224.093520 328.609650 L 223.616167 328.103030 L 223.233746 328.147205 L 223.379706 327.733326 L 222.938180 327.449797 L 222.440810 327.843722 L 221.941511 326.936286 L 221.353617 327.416101 L 221.145007 327.075867 L 220.778481 327.435195 L 220.501268 326.418265 L 220.055826 326.369557 L 220.045570 326.010865 L 219.274864 325.545939 L 219.704844 325.335216 L 219.118386 324.332560 L 217.919915 324.665349 L 218.150121 323.148220 L 219.240574 322.519739 L 220.489988 323.011614 L 220.627251 323.409168 L 221.511389 323.402769 L 221.552528 322.262851 L 221.007620 321.890315 L 221.768769 321.519953 L 221.547300 320.833928 L 221.866492 320.061191 L 222.025864 320.325627 Z ' fill='#1E1626' fill-opacity='1' fill-rule='evenodd' stroke='#FFFFFF' stroke-opacity='1' stroke-width='0.21' stroke-linejoin='round' stroke-linecap='butt' title='Greater Glasgow and Clyde&amp;lt;br/&amp;gt;Winter Year: 2023&amp;lt;br/&amp;gt;Items per Head: 20.13'/>\n <path id='svg_52553b2cf052ba37_e456' d='M 228.823704 321.518785 L 229.204770 321.590359 L 229.061888 322.004240 L 229.596605 322.064206 L 229.589078 322.586350 L 230.128859 322.658334 L 230.211282 323.106506 L 231.204340 323.217947 L 230.634452 323.688698 L 231.828534 324.478107 L 231.638832 324.950683 L 232.410009 325.225886 L 233.060803 325.028082 L 232.555845 325.542310 L 232.981928 326.579359 L 232.598770 327.331403 L 234.567781 326.704870 L 235.024442 327.275250 L 236.250496 327.760437 L 236.480293 328.714326 L 236.738064 329.028329 L 237.031682 328.902695 L 235.848327 330.413919 L 235.884484 331.158846 L 235.257909 331.260178 L 235.770703 332.383957 L 235.772651 333.425476 L 235.049524 335.096603 L 235.451796 335.811096 L 234.514358 336.413654 L 234.543991 337.706710 L 234.100087 337.761569 L 233.671975 338.529815 L 232.756172 337.783308 L 232.780126 336.868654 L 232.232900 336.587874 L 231.340988 334.978476 L 230.443335 334.604095 L 229.475749 334.700381 L 228.878133 334.258527 L 228.776206 333.810419 L 229.686062 332.360270 L 228.663206 331.525065 L 228.103633 332.074691 L 227.251919 331.931029 L 226.256850 332.412566 L 226.016902 332.134062 L 226.922247 331.187455 L 226.538247 330.946419 L 226.048281 329.575843 L 226.383491 329.190079 L 226.379737 328.329424 L 225.657102 327.390016 L 226.685784 326.711904 L 226.320448 326.284221 L 226.416058 325.781130 L 226.733938 325.715585 L 227.110370 326.210904 L 227.903491 326.168205 L 228.021271 325.796736 L 228.381255 325.766733 L 228.316080 324.850437 L 227.258030 324.831017 L 226.893247 324.144867 L 228.650551 323.961480 L 228.491405 323.490629 L 228.763307 323.027138 L 227.837536 323.261263 L 227.984253 322.719881 L 227.494226 322.031926 L 228.823704 321.518785 Z ' fill='#201829' fill-opacity='1' fill-rule='evenodd' stroke='#FFFFFF' stroke-opacity='1' stroke-width='0.21' stroke-linejoin='round' stroke-linecap='butt' title='Lanarkshire&amp;lt;br/&amp;gt;Winter Year: 2023&amp;lt;br/&amp;gt;Items per Head: 20'/>\n <\/g>\n <g clip-path='url(#svg_52553b2cf052ba37_c7)'>\n <path id='svg_52553b2cf052ba37_e457' d='M 321.022649 159.366879 L 322.289556 160.399682 L 322.655119 162.009798 L 322.315007 162.631428 L 323.172033 163.329104 L 322.588630 163.797885 L 323.180983 164.310940 L 323.069081 165.564418 L 322.648125 165.925694 L 320.798644 165.857377 L 319.582959 164.226757 L 319.789930 163.076604 L 319.215038 161.390956 L 319.654226 160.287194 L 321.022649 159.366879 Z ' fill='#1E1626' fill-opacity='1' fill-rule='evenodd' stroke='#FFFFFF' stroke-opacity='1' stroke-width='0.21' stroke-linejoin='round' stroke-linecap='butt' title='Ayrshire and Arran&amp;lt;br/&amp;gt;Winter Year: 2021&amp;lt;br/&amp;gt;Items per Head: 20.13'/>\n <path id='svg_52553b2cf052ba37_e458' d='M 325.215369 159.245099 L 324.971257 159.813819 L 324.821074 159.533797 L 325.215369 159.245099 Z ' fill='#1E1626' fill-opacity='1' fill-rule='evenodd' stroke='#FFFFFF' stroke-opacity='1' stroke-width='0.21' stroke-linejoin='round' stroke-linecap='butt' title='Ayrshire and Arran&amp;lt;br/&amp;gt;Winter Year: 2021&amp;lt;br/&amp;gt;Items per Head: 20.13'/>\n <path id='svg_52553b2cf052ba37_e459' d='M 325.713661 157.940416 L 325.703324 158.858700 L 325.115861 159.077300 L 325.372052 158.117609 L 325.713661 157.940416 Z ' fill='#1E1626' fill-opacity='1' fill-rule='evenodd' stroke='#FFFFFF' stroke-opacity='1' stroke-width='0.21' stroke-linejoin='round' stroke-linecap='butt' title='Ayrshire and Arran&amp;lt;br/&amp;gt;Winter Year: 2021&amp;lt;br/&amp;gt;Items per Head: 20.13'/>\n <path id='svg_52553b2cf052ba37_e460' d='M 327.150869 155.797800 L 327.730869 156.727344 L 327.300889 156.938067 L 328.071595 157.402993 L 328.081850 157.761685 L 328.527292 157.810393 L 328.804505 158.827323 L 329.171031 158.467995 L 329.379641 158.808229 L 329.967536 158.328414 L 330.466834 159.235850 L 330.964204 158.841925 L 331.405730 159.125454 L 331.259771 159.539333 L 331.642192 159.495158 L 332.119545 160.001778 L 332.334699 159.794889 L 333.075134 160.612867 L 334.074305 160.856548 L 334.564271 162.338547 L 334.948271 162.579583 L 334.042926 163.526190 L 334.266878 163.799464 L 335.277943 163.323157 L 336.129657 163.466819 L 336.689230 162.917193 L 337.712086 163.752398 L 337.709010 164.101245 L 336.802230 165.202547 L 337.294945 165.865378 L 336.883342 166.240376 L 337.066174 166.485143 L 335.902937 167.011860 L 335.657163 167.987078 L 335.927751 168.401346 L 335.493383 169.568582 L 335.109057 169.918251 L 334.381069 169.108025 L 333.094720 169.244242 L 332.287816 170.415581 L 331.407698 172.996359 L 331.161741 173.119901 L 330.974254 172.350549 L 330.658834 172.759077 L 329.534972 172.602187 L 328.209309 173.547523 L 328.216384 174.133344 L 328.630040 174.435639 L 328.544621 175.001877 L 327.465879 175.277099 L 327.130258 175.040124 L 326.490500 175.386203 L 326.329919 175.074989 L 325.247997 175.156406 L 325.135406 174.649953 L 324.769741 174.512545 L 324.059638 175.731976 L 323.168239 176.010857 L 323.058560 174.776550 L 323.944462 172.702924 L 325.722480 170.864735 L 326.094962 169.547176 L 325.975636 168.696811 L 326.948142 167.864430 L 327.386916 166.516199 L 328.671825 165.916455 L 329.069452 164.862532 L 328.285108 163.678126 L 328.656296 163.558170 L 328.390747 162.573533 L 327.410774 161.774237 L 326.602117 161.562772 L 326.380869 160.859114 L 325.596927 160.078419 L 325.640444 159.372544 L 326.321547 158.396789 L 325.935890 157.365873 L 325.962571 156.086024 L 327.150869 155.797800 Z ' fill='#1E1626' fill-opacity='1' fill-rule='evenodd' stroke='#FFFFFF' stroke-opacity='1' stroke-width='0.21' stroke-linejoin='round' stroke-linecap='butt' title='Ayrshire and Arran&amp;lt;br/&amp;gt;Winter Year: 2021&amp;lt;br/&amp;gt;Items per Head: 20.13'/>\n <path id='svg_52553b2cf052ba37_e461' d='M 351.816623 174.282584 L 351.231333 172.784199 L 351.783420 171.360402 L 351.032298 171.342335 L 351.516092 170.755815 L 351.345462 170.278583 L 350.519179 170.113183 L 350.071479 170.590312 L 349.459509 170.525567 L 348.718745 168.686721 L 348.393892 168.495379 L 347.774436 168.780751 L 347.228399 168.101514 L 346.250887 168.856059 L 345.903084 168.714325 L 346.126482 167.678939 L 346.885806 166.877162 L 345.985999 166.512727 L 345.465086 167.238314 L 343.931364 167.407202 L 343.103234 166.669412 L 343.324622 165.419013 L 343.799392 164.802633 L 343.796727 163.776085 L 343.283934 162.652306 L 343.910508 162.550974 L 343.874351 161.806047 L 345.047985 160.427819 L 344.506318 160.106454 L 344.136244 158.954455 L 344.721553 158.134835 L 345.455652 157.841360 L 345.752820 158.557698 L 346.407058 158.494144 L 346.655148 158.977158 L 347.813914 158.395170 L 348.528530 160.492174 L 348.983610 160.231821 L 348.840975 159.887280 L 349.211049 159.376211 L 350.820795 158.048618 L 351.128484 158.641250 L 351.865863 157.944949 L 352.251113 158.096793 L 353.068682 157.498051 L 353.543451 157.871099 L 354.455255 157.461237 L 355.278566 157.879404 L 355.584141 157.495691 L 355.922735 157.644480 L 356.212826 156.946682 L 355.738261 156.431921 L 355.942114 155.991194 L 356.579107 155.986786 L 357.060542 156.619367 L 358.396479 155.206379 L 358.842661 155.545096 L 360.183377 155.524771 L 361.285685 155.888858 L 361.352172 156.462662 L 362.062174 156.886940 L 362.622771 158.299108 L 361.942219 158.723326 L 361.947573 159.431028 L 361.534862 159.961458 L 360.775455 160.414921 L 360.894425 160.707433 L 359.844599 161.934245 L 360.024130 162.188405 L 359.102728 162.047821 L 358.709889 162.385553 L 359.064275 162.462335 L 359.315544 163.572005 L 359.940722 164.137709 L 360.439588 165.973480 L 360.903511 166.131866 L 360.047817 167.041312 L 359.667530 166.937148 L 358.691247 167.497315 L 358.662023 168.433360 L 358.121851 168.841908 L 356.867967 168.707065 L 356.279027 169.426233 L 355.773946 169.540875 L 354.619446 170.850358 L 355.077234 171.149146 L 354.812101 171.681707 L 354.349800 171.725739 L 353.861290 172.824950 L 352.256959 173.603921 L 351.816623 174.282584 Z ' fill='#362850' fill-opacity='1' fill-rule='evenodd' stroke='#FFFFFF' stroke-opacity='1' stroke-width='0.21' stroke-linejoin='round' stroke-linecap='butt' title='Borders&amp;lt;br/&amp;gt;Winter Year: 2021&amp;lt;br/&amp;gt;Items per Head: 18.38'/>\n <path id='svg_52553b2cf052ba37_e462' d='M 337.443837 166.010149 L 339.367012 166.370604 L 340.258924 167.980002 L 340.806150 168.260782 L 340.782196 169.175436 L 341.638012 169.935582 L 341.971272 169.829819 L 342.126111 169.153697 L 342.570016 169.098838 L 342.519156 167.871203 L 342.919890 167.494157 L 343.476590 167.203347 L 345.465086 167.238314 L 345.985999 166.512727 L 346.885806 166.877162 L 346.126482 167.678939 L 345.879971 168.688381 L 346.250887 168.856059 L 347.228399 168.101514 L 347.774436 168.780751 L 348.393892 168.495379 L 348.718745 168.686721 L 349.459509 170.525567 L 350.071479 170.590312 L 350.519179 170.113183 L 351.345462 170.278583 L 351.516092 170.755815 L 351.032298 171.342335 L 351.783420 171.360402 L 351.231333 172.784199 L 351.828661 174.269069 L 350.489092 175.613273 L 349.280470 175.515795 L 349.603232 175.893048 L 349.351655 176.755119 L 347.975493 177.786645 L 346.071131 177.496458 L 345.104111 177.759981 L 344.475862 178.407708 L 343.866456 178.525528 L 343.982742 178.265620 L 343.621379 178.372946 L 343.775032 177.875295 L 343.426841 178.598516 L 342.677316 178.845089 L 341.559669 180.122416 L 340.779222 179.882570 L 340.013438 180.117289 L 340.177607 179.782592 L 339.916051 179.755869 L 336.956208 181.734254 L 336.040310 181.684937 L 335.588166 180.985094 L 335.442833 181.765326 L 334.994088 181.342531 L 334.658259 181.463779 L 333.449101 180.114180 L 332.444571 179.801158 L 332.631667 180.101832 L 331.629711 179.189880 L 332.195119 180.892220 L 331.825762 182.208162 L 332.029083 182.903787 L 331.407112 183.650695 L 329.489692 182.625219 L 328.746794 181.368876 L 327.338444 180.181800 L 326.541299 180.003057 L 325.909188 179.426660 L 325.279375 179.537311 L 324.142819 180.543064 L 324.688220 182.831208 L 325.181857 183.280527 L 324.981818 184.245775 L 325.292090 184.337345 L 324.371468 184.157200 L 323.822745 183.644715 L 323.752893 183.075299 L 324.078484 182.848394 L 323.958777 182.187510 L 323.536037 182.032385 L 323.445937 181.157266 L 321.605621 179.072734 L 321.168362 177.774552 L 321.475539 175.870553 L 322.467760 175.526569 L 323.057342 176.646160 L 322.698783 176.800982 L 322.708564 177.399172 L 323.245412 178.103506 L 323.728539 177.668468 L 323.168239 176.010857 L 324.059638 175.731976 L 324.632437 174.548742 L 325.056039 174.568840 L 325.247997 175.156406 L 326.329919 175.074989 L 326.490500 175.386203 L 327.130258 175.040124 L 327.465879 175.277099 L 328.544621 175.001877 L 328.282422 173.425293 L 329.534972 172.602187 L 330.658834 172.759077 L 330.968920 172.350549 L 331.161741 173.119901 L 331.407698 172.996359 L 332.287816 170.415581 L 333.086106 169.252445 L 334.381069 169.108025 L 335.184117 169.901435 L 335.927751 168.401346 L 335.657163 167.987078 L 335.902937 167.011860 L 337.443837 166.010149 Z ' fill='#271D35' fill-opacity='1' fill-rule='evenodd' stroke='#FFFFFF' stroke-opacity='1' stroke-width='0.21' stroke-linejoin='round' stroke-linecap='butt' title='Dumfries and Galloway&amp;lt;br/&amp;gt;Winter Year: 2021&amp;lt;br/&amp;gt;Items per Head: 19.47'/>\n <path id='svg_52553b2cf052ba37_e463' d='M 333.606610 141.297123 L 334.034416 142.671187 L 335.858229 141.925193 L 336.426517 142.443748 L 336.531828 142.972660 L 336.078386 142.988861 L 335.743996 143.412567 L 335.219596 143.103503 L 335.238464 144.728898 L 334.677560 144.763455 L 334.677252 146.024004 L 335.282967 146.614441 L 336.229329 147.191343 L 336.664926 146.984003 L 337.170499 147.474317 L 337.584319 147.353463 L 338.378445 148.447790 L 338.886439 148.322997 L 339.224685 148.780848 L 339.561535 148.527055 L 339.680279 149.223420 L 340.399611 148.748854 L 340.943699 149.406251 L 341.832841 149.437835 L 342.462819 149.065034 L 343.022062 149.314189 L 342.761216 149.817282 L 342.059848 150.104441 L 342.292618 150.759765 L 341.834995 150.936836 L 342.276193 151.233940 L 341.178192 151.343290 L 340.754037 152.095047 L 341.310903 152.831832 L 343.851258 153.665685 L 343.713401 153.926326 L 343.306267 154.104359 L 342.583736 153.835247 L 341.690574 154.987984 L 340.766834 155.247005 L 340.380333 155.814167 L 339.689322 156.080284 L 339.852958 155.868431 L 338.660477 155.080826 L 339.230364 154.610075 L 338.265382 154.513912 L 338.154883 154.050462 L 337.646972 154.028190 L 337.622629 153.456334 L 337.087913 153.396368 L 337.230795 152.982487 L 336.257219 152.966409 L 335.729539 153.435025 L 335.410120 152.875864 L 334.944106 153.321882 L 333.769242 152.898322 L 333.956709 154.312766 L 333.205281 154.450172 L 332.768964 153.928683 L 332.152154 154.114572 L 331.746395 153.351967 L 331.450971 153.382729 L 331.128578 152.335488 L 331.437476 152.034158 L 329.962778 151.664534 L 330.014419 150.848833 L 329.392234 150.563849 L 328.752639 148.760934 L 328.800156 147.064703 L 329.273490 146.929964 L 329.011598 146.538253 L 329.332760 146.000215 L 327.720143 145.895129 L 327.771865 145.437361 L 326.894105 144.791039 L 327.479723 143.740085 L 328.484736 143.400261 L 328.599481 142.825206 L 329.365471 142.844380 L 330.216693 142.020659 L 331.134320 141.887151 L 331.411185 141.476674 L 331.785977 141.725544 L 333.224949 140.998112 L 333.606610 141.297123 Z ' fill='#2E2242' fill-opacity='1' fill-rule='evenodd' stroke='#FFFFFF' stroke-opacity='1' stroke-width='0.21' stroke-linejoin='round' stroke-linecap='butt' title='Forth Valley&amp;lt;br/&amp;gt;Winter Year: 2021&amp;lt;br/&amp;gt;Items per Head: 18.95'/>\n <path id='svg_52553b2cf052ba37_e464' d='M 346.622704 114.420277 L 347.439779 114.465395 L 348.673544 115.322955 L 350.466001 115.901374 L 352.678345 114.954768 L 352.951989 115.283762 L 353.368534 115.108970 L 353.983644 115.527527 L 354.317583 115.311203 L 356.028558 115.533309 L 356.794854 115.939724 L 358.800721 115.851703 L 359.419132 115.254948 L 360.700230 115.831604 L 361.605164 115.155115 L 363.003222 115.212825 L 363.215669 115.658165 L 363.774852 115.524122 L 364.543015 116.704463 L 365.274344 117.146439 L 365.447928 119.087129 L 365.945380 119.686140 L 365.622454 119.702525 L 365.577438 120.132915 L 365.864721 120.440684 L 364.806876 121.876172 L 364.788130 122.323111 L 363.366201 123.833043 L 362.534995 125.645372 L 362.141500 127.072879 L 362.501505 127.100812 L 362.824902 128.319258 L 362.559154 128.805225 L 362.142013 128.804385 L 360.500315 131.903307 L 360.595945 133.250361 L 360.142751 134.311486 L 359.129347 135.751874 L 357.674048 136.797522 L 357.252459 136.915399 L 356.404846 136.048939 L 355.327662 136.080932 L 354.660196 134.731643 L 354.787491 133.741108 L 354.474226 133.068022 L 353.507972 132.036961 L 352.767003 131.979025 L 352.663230 131.633664 L 351.927388 131.400687 L 351.152683 131.846950 L 350.253697 131.697546 L 349.540005 132.013992 L 349.045957 133.604829 L 347.019418 132.652521 L 347.002703 133.138366 L 345.924371 133.854313 L 345.182274 133.575400 L 344.727295 133.879436 L 343.837949 133.415843 L 343.544780 133.595374 L 343.289246 132.517678 L 342.138723 132.458102 L 341.693692 132.877908 L 341.325565 132.411137 L 340.788040 132.637858 L 340.594339 132.405189 L 341.266195 131.050608 L 341.178315 130.027648 L 341.499785 129.603125 L 341.296136 129.151632 L 341.730812 129.100874 L 342.499467 128.276744 L 342.957523 128.373337 L 343.998775 127.138834 L 345.042818 126.941852 L 345.345317 125.887925 L 344.930205 125.524105 L 345.131107 124.567756 L 344.591120 124.009660 L 345.966927 122.121350 L 345.648636 121.319163 L 344.938738 121.080856 L 344.559844 120.450017 L 342.609228 121.147466 L 342.112063 120.950728 L 342.279433 119.036289 L 341.898202 118.834487 L 342.043607 117.957999 L 341.442976 116.404425 L 343.047535 115.650352 L 344.314297 115.783450 L 344.740420 115.388950 L 344.734228 114.875770 L 346.622704 114.420277 Z ' fill='#395E9C' fill-opacity='1' fill-rule='evenodd' stroke='#FFFFFF' stroke-opacity='1' stroke-width='0.21' stroke-linejoin='round' stroke-linecap='butt' title='Grampian&amp;lt;br/&amp;gt;Winter Year: 2021&amp;lt;br/&amp;gt;Items per Head: 14.96'/>\n <path id='svg_52553b2cf052ba37_e465' d='M 324.352014 108.625097 L 324.291588 108.401838 L 322.898759 107.842266 L 322.331045 106.684217 L 321.633574 106.536824 L 321.743970 106.098908 L 321.221376 105.510602 L 321.665383 104.855831 L 322.430941 105.781068 L 322.687112 105.486977 L 323.114199 105.885866 L 323.557284 105.046662 L 323.151833 104.629417 L 323.646393 104.622034 L 323.211922 104.239143 L 323.933716 104.035844 L 323.111123 103.820875 L 323.497092 103.567595 L 323.093220 103.671553 L 323.201052 103.350616 L 322.060477 101.939330 L 322.439883 101.274652 L 323.216742 102.208709 L 324.022415 101.697740 L 323.581997 101.493068 L 323.807670 101.254307 L 324.034720 101.707381 L 324.771484 101.678464 L 325.015431 102.129237 L 324.965801 101.526905 L 325.475539 101.753831 L 325.348489 101.370940 L 325.651500 101.309517 L 326.254037 101.877189 L 326.858113 101.711994 L 327.680827 102.673981 L 327.003107 101.812280 L 327.874304 101.722762 L 326.267471 101.627704 L 325.650269 101.034295 L 325.357512 101.120942 L 325.450006 100.150176 L 325.051732 100.177555 L 324.785328 99.422846 L 325.183129 99.392697 L 324.942831 99.175206 L 325.397298 98.040476 L 326.836168 98.925454 L 326.241835 98.312521 L 326.716707 98.162706 L 325.966612 98.198391 L 325.738457 97.997716 L 326.244091 98.014328 L 325.712205 97.688962 L 326.253115 97.177686 L 326.744462 97.281972 L 326.210663 97.058841 L 326.488674 96.923978 L 325.674470 96.288237 L 325.980045 95.402377 L 326.662770 95.035685 L 327.088628 94.345578 L 327.241107 93.247558 L 327.832057 93.624399 L 328.786950 93.553153 L 329.399412 94.018571 L 329.420023 94.796763 L 329.788559 95.203958 L 329.288708 95.699769 L 329.723036 95.338596 L 329.442992 95.972141 L 329.875515 95.161956 L 329.453965 94.712371 L 330.027790 94.387621 L 329.774614 93.931615 L 330.073626 93.839327 L 330.418906 94.695165 L 331.387703 95.131461 L 330.097108 97.363124 L 331.192257 96.684151 L 331.496807 95.829259 L 331.783515 95.770503 L 331.736447 96.094781 L 332.272846 94.506980 L 333.238381 94.608497 L 333.743709 95.297825 L 333.972173 95.108080 L 334.142392 95.833874 L 334.540870 95.468107 L 334.313125 96.249272 L 334.110860 96.340725 L 334.133614 96.515881 L 334.907868 95.591669 L 335.561369 95.441855 L 336.179287 95.864636 L 336.304902 95.612075 L 336.612179 95.743554 L 336.621860 95.314292 L 337.072633 95.564803 L 337.686144 94.931914 L 338.323134 95.305679 L 338.989145 94.238627 L 339.136333 95.116080 L 339.977200 94.905334 L 340.223834 95.234905 L 341.816004 95.130948 L 343.361847 93.855858 L 344.760110 93.899418 L 344.579143 94.226813 L 344.869993 94.472382 L 345.662602 94.154870 L 346.716775 94.567459 L 346.939743 94.101426 L 346.220063 93.526637 L 346.669607 92.814112 L 347.463775 93.483938 L 348.906090 93.125431 L 349.226267 93.632830 L 350.860439 93.552722 L 350.616778 94.623529 L 350.264464 94.722975 L 350.329066 95.352768 L 349.558872 96.349045 L 349.664531 97.265813 L 350.525002 97.456355 L 349.759403 99.753995 L 348.370369 101.241901 L 346.315201 102.114984 L 344.853936 104.212892 L 342.376683 106.219476 L 341.222039 106.774660 L 340.715891 107.954487 L 339.010699 108.690637 L 338.573664 110.761350 L 338.634042 111.173857 L 338.699054 110.924270 L 339.199767 111.147298 L 337.343365 111.406483 L 336.135790 110.800789 L 335.267854 111.078863 L 334.627334 110.589490 L 335.176488 111.117069 L 336.413370 111.033046 L 336.827722 111.684393 L 337.037995 111.464891 L 338.322110 111.764909 L 338.117845 111.918825 L 339.424025 111.285627 L 340.392536 111.960868 L 340.983280 111.235176 L 341.496422 111.096253 L 338.921467 114.960222 L 338.167804 114.944062 L 338.101541 114.417571 L 337.810732 114.329178 L 336.625940 115.091231 L 335.244698 115.203247 L 333.588071 117.098778 L 335.954884 115.321089 L 336.679898 115.286204 L 337.156698 115.649181 L 338.142271 115.173756 L 338.671265 115.347523 L 337.308562 116.906040 L 337.413320 117.671968 L 336.468599 117.804533 L 335.593199 119.293813 L 333.606590 119.252365 L 334.713142 119.358661 L 333.876706 119.575270 L 334.983811 119.645901 L 335.747851 119.322115 L 336.306418 119.508762 L 337.897400 118.064725 L 337.576177 117.475414 L 338.194424 117.017195 L 340.123814 117.373898 L 341.439387 116.434264 L 342.043607 117.957999 L 341.898202 118.834487 L 342.279433 119.036289 L 342.112063 120.950728 L 342.609228 121.147466 L 344.558716 120.449710 L 344.817738 120.982927 L 345.752306 121.470105 L 345.889712 122.450920 L 344.565382 124.179778 L 345.131107 124.567756 L 344.930205 125.524105 L 345.345317 125.887925 L 345.231700 126.547824 L 345.040255 126.943800 L 343.964895 127.164840 L 342.915480 128.402564 L 342.499467 128.276744 L 341.730812 129.100874 L 341.296136 129.151632 L 341.499785 129.603125 L 341.178315 130.027648 L 341.266195 131.050608 L 340.566242 132.339562 L 339.396544 132.607709 L 338.713922 132.032038 L 338.469462 133.117755 L 337.773817 133.337911 L 337.634258 133.042857 L 336.671592 133.168000 L 335.896579 132.755883 L 335.555319 133.687682 L 334.233860 134.079291 L 333.880501 134.694851 L 333.339590 134.485973 L 332.446552 135.789283 L 331.487270 135.036622 L 331.130321 135.775030 L 330.579773 136.039689 L 330.495279 137.560696 L 329.655870 137.949945 L 328.904236 137.878269 L 328.899828 138.661074 L 329.542356 138.744134 L 329.987286 138.413539 L 329.889871 139.137075 L 330.795419 140.325230 L 330.300142 140.216124 L 329.060818 140.751189 L 329.581219 141.500055 L 329.131470 142.138994 L 329.713807 142.493173 L 329.365471 142.844380 L 328.595893 142.827666 L 328.484736 143.400261 L 327.479723 143.740085 L 326.893489 144.794422 L 327.771865 145.437361 L 327.720143 145.895129 L 329.332760 146.000215 L 329.011598 146.538253 L 329.273490 146.929964 L 328.800156 147.064703 L 328.752125 148.752505 L 329.392234 150.563849 L 330.028447 150.911671 L 329.557326 152.315677 L 329.794794 152.912081 L 329.033645 153.282443 L 329.578552 153.654979 L 329.537414 154.794897 L 328.805078 154.745861 L 328.645113 154.426198 L 329.186556 154.435488 L 328.456148 154.068203 L 328.244788 153.346204 L 327.369377 152.980949 L 326.905907 151.469180 L 326.941387 152.474617 L 327.669036 153.555144 L 326.733553 153.635707 L 326.393615 152.932420 L 326.270233 151.904906 L 328.032278 148.648937 L 326.546301 150.964597 L 326.232151 150.739079 L 326.100757 149.364137 L 325.906891 149.458445 L 325.958162 150.659459 L 326.375586 151.266502 L 325.864767 152.084773 L 325.990744 153.592596 L 325.277008 153.432038 L 325.834210 153.982949 L 324.820069 156.347787 L 323.974548 156.085349 L 323.754370 154.231060 L 323.077900 152.958718 L 323.600454 155.451413 L 322.328112 154.596315 L 322.256333 153.959426 L 321.487677 155.444153 L 321.932607 156.959089 L 320.525320 156.350092 L 320.564214 155.826644 L 320.057113 155.285295 L 320.408833 153.953274 L 320.193597 152.720411 L 320.666008 152.710361 L 322.221635 150.117067 L 323.553572 149.532167 L 324.116240 148.390983 L 325.879074 147.105370 L 324.409921 147.804134 L 324.234658 147.529291 L 323.357839 149.206294 L 321.801682 150.101097 L 320.939590 151.527744 L 320.461996 151.475353 L 320.292652 152.458518 L 319.570756 152.985995 L 319.004267 152.428266 L 318.902182 153.549976 L 319.483903 155.880449 L 319.223651 156.032498 L 319.607774 156.075484 L 320.149914 156.901563 L 320.396835 158.108688 L 319.355931 158.635549 L 318.612603 159.564272 L 318.107891 161.019857 L 318.345713 162.578215 L 317.889579 162.666990 L 317.880248 163.605865 L 316.989773 165.738022 L 316.284685 165.898126 L 316.589818 166.183218 L 317.130358 165.871121 L 316.928555 166.092920 L 317.310832 167.438477 L 316.139617 168.604892 L 315.072749 168.529811 L 314.049585 168.907186 L 313.536669 168.508708 L 313.604244 167.154435 L 313.809226 166.444229 L 314.840026 165.414938 L 314.994612 162.437706 L 315.628425 161.133268 L 315.641550 159.991873 L 316.429586 159.373236 L 317.096929 158.123556 L 318.299748 157.334086 L 318.885776 156.199764 L 316.777818 158.301159 L 316.515823 158.230303 L 316.666705 157.469303 L 316.247368 157.638635 L 315.937486 157.343929 L 316.016854 156.240679 L 317.145534 154.427223 L 316.811862 154.413585 L 315.863758 155.344257 L 315.774137 154.606672 L 317.431934 152.315677 L 317.055707 152.448059 L 317.486007 151.881340 L 316.925582 152.248102 L 317.365077 151.616648 L 316.725350 152.225674 L 316.872772 152.417296 L 316.367240 153.158778 L 316.564428 152.483128 L 316.321096 152.816390 L 315.723481 154.307351 L 315.534906 154.191684 L 315.878525 153.606476 L 315.477893 153.890928 L 316.658460 151.574401 L 317.322112 150.706690 L 317.861893 150.686489 L 317.547602 150.223409 L 318.454689 148.619754 L 318.179373 148.569845 L 317.089034 149.836313 L 317.124411 149.193784 L 317.954735 147.871008 L 317.722017 147.407483 L 318.753822 147.016084 L 318.543390 146.711206 L 317.326624 147.086135 L 317.686546 145.220382 L 318.077026 144.865894 L 318.426744 145.087028 L 319.353643 144.650423 L 318.747551 144.618579 L 318.434777 144.978859 L 318.221816 144.638149 L 318.566562 143.831167 L 319.108351 143.467332 L 319.004568 142.918561 L 319.564296 142.508951 L 321.763105 142.561262 L 322.138658 143.061696 L 323.665777 141.943187 L 324.411992 140.274636 L 322.822918 142.537143 L 322.217674 142.844851 L 321.901927 142.437308 L 320.787028 142.209400 L 319.906480 142.451028 L 319.846308 141.639081 L 319.351112 142.077673 L 319.449879 141.781881 L 319.159051 141.927141 L 319.989087 140.695898 L 320.376798 141.288633 L 322.327845 140.169079 L 321.195473 140.483186 L 320.578109 141.008939 L 320.243083 140.547316 L 319.953547 140.637470 L 320.732536 139.182603 L 321.546598 138.459518 L 321.352219 138.059870 L 322.569148 137.366338 L 323.512392 137.635674 L 325.777360 136.880924 L 323.323180 137.449355 L 323.049557 137.099523 L 322.244110 137.021982 L 324.124957 134.042438 L 323.133682 133.557680 L 321.438252 133.393182 L 324.021081 134.095492 L 322.539452 135.729295 L 322.203258 136.327341 L 322.358957 136.601928 L 321.813146 137.046858 L 321.522029 136.837877 L 319.387514 138.862673 L 318.768980 138.789047 L 319.099227 139.042881 L 318.335924 140.210322 L 316.528743 141.403254 L 315.480251 140.534108 L 315.780084 139.894718 L 315.331463 140.538373 L 313.823171 140.017399 L 312.711411 138.403488 L 312.699106 137.699128 L 313.726680 137.697385 L 313.912897 137.592484 L 313.389418 137.538753 L 313.694481 137.302496 L 314.830134 138.420307 L 314.323884 137.609507 L 316.009369 136.689806 L 317.073242 137.327925 L 318.529852 137.147759 L 317.023099 137.245072 L 316.380263 136.529021 L 315.646882 136.369855 L 314.811370 137.302393 L 313.465710 136.900326 L 313.113479 137.209080 L 311.974892 136.644401 L 310.496810 136.707854 L 310.007890 136.136387 L 310.022450 135.744778 L 310.574947 135.573738 L 310.494247 135.189924 L 311.091247 135.022266 L 313.143112 134.992735 L 313.385523 134.643785 L 313.975241 135.404135 L 314.520048 135.352864 L 314.355263 134.690749 L 315.546597 134.590052 L 314.354647 134.569646 L 314.500769 134.098262 L 315.081773 134.368254 L 314.626179 134.135177 L 314.804396 133.617030 L 316.532846 133.472857 L 317.108557 132.884860 L 316.957288 132.677663 L 316.451940 133.341091 L 315.678322 133.055757 L 316.502390 132.520548 L 316.371649 132.278139 L 314.469186 132.667800 L 314.025283 132.274858 L 314.431759 131.933392 L 314.954620 132.106793 L 314.342855 131.598594 L 314.905954 131.151325 L 315.478939 129.556121 L 316.648759 129.483950 L 316.853392 130.118091 L 317.732382 130.645978 L 319.162742 130.163250 L 317.910909 130.398646 L 317.422911 130.066513 L 317.209624 129.083402 L 316.499130 129.258112 L 316.232193 128.785147 L 316.003934 128.871590 L 315.830330 128.365749 L 316.833294 127.207333 L 317.799608 127.037031 L 318.453150 127.273062 L 319.301973 128.184086 L 319.357162 127.795924 L 320.925849 127.636677 L 319.223959 127.715224 L 318.825665 126.969352 L 317.631071 126.699545 L 317.179578 126.127975 L 318.122493 125.124580 L 317.838677 124.513000 L 318.545767 124.065239 L 319.400947 123.842415 L 320.462564 125.158338 L 320.859936 124.959344 L 319.562348 123.788479 L 320.274235 122.933605 L 319.467702 123.806833 L 316.890533 123.452838 L 317.103594 122.709018 L 317.609783 122.499074 L 317.552852 122.143375 L 319.432016 121.975328 L 320.517158 120.777617 L 319.238848 121.853734 L 318.209202 121.608536 L 318.644986 121.136760 L 318.487318 120.775915 L 316.832658 121.896453 L 316.300916 121.967105 L 316.086788 121.327469 L 315.888677 121.567726 L 316.051307 119.972171 L 315.612551 119.730909 L 315.416265 119.003969 L 316.013060 116.588899 L 316.331966 116.479382 L 317.116207 117.485731 L 317.546883 117.597706 L 317.546782 117.227940 L 317.635992 117.777361 L 318.213100 118.307914 L 318.184080 117.506650 L 318.573945 118.087243 L 318.568715 117.832015 L 319.649570 117.922622 L 319.815709 117.617968 L 319.003597 117.301503 L 318.024115 117.499267 L 317.056221 115.670223 L 316.303870 115.266618 L 316.732495 113.954511 L 317.379535 113.737717 L 318.005944 114.195096 L 318.163674 113.941979 L 317.909514 113.300006 L 316.519002 112.740701 L 316.644719 110.261437 L 318.088614 110.029180 L 318.371855 111.721800 L 319.096745 112.531595 L 318.893774 111.958303 L 319.412329 111.950715 L 319.204784 111.695899 L 319.432674 110.932657 L 318.719145 110.456063 L 318.589019 109.662490 L 319.102139 108.890245 L 319.788617 109.077671 L 320.034637 110.230490 L 320.846277 110.607825 L 321.467990 109.359991 L 322.772838 110.532251 L 323.717290 110.891804 L 322.461848 109.472171 L 321.816366 109.304270 L 321.711014 108.866764 L 322.201472 108.706592 L 322.610594 109.301789 L 323.695408 109.277444 L 325.017442 110.317466 L 325.648526 111.437514 L 325.302775 110.399665 L 323.892310 109.114176 L 324.352014 108.625097 Z M 333.771944 96.493964 L 333.696027 96.528289 L 333.778662 96.939483 L 333.781136 96.934457 L 334.067639 96.997213 L 333.764832 96.498552 L 333.771944 96.493964 Z M 326.785392 97.299082 L 327.212436 97.882152 L 327.244408 97.490953 L 326.785392 97.299082 Z ' fill='#3A5692' fill-opacity='1' fill-rule='evenodd' stroke='#FFFFFF' stroke-opacity='1' stroke-width='0.21' stroke-linejoin='round' stroke-linecap='butt' title='Highland&amp;lt;br/&amp;gt;Winter Year: 2021&amp;lt;br/&amp;gt;Items per Head: 15.46'/>\n <path id='svg_52553b2cf052ba37_e466' d='M 349.780179 92.306857 L 349.903352 92.903837 L 349.528745 93.069463 L 349.780179 92.306857 Z ' fill='#3A5692' fill-opacity='1' fill-rule='evenodd' stroke='#FFFFFF' stroke-opacity='1' stroke-width='0.21' stroke-linejoin='round' stroke-linecap='butt' title='Highland&amp;lt;br/&amp;gt;Winter Year: 2021&amp;lt;br/&amp;gt;Items per Head: 15.46'/>\n <path id='svg_52553b2cf052ba37_e467' d='M 334.921302 94.986055 L 335.271689 95.036918 L 335.146688 95.329878 L 334.921302 94.986055 Z ' fill='#3A5692' fill-opacity='1' fill-rule='evenodd' stroke='#FFFFFF' stroke-opacity='1' stroke-width='0.21' stroke-linejoin='round' stroke-linecap='butt' title='Highland&amp;lt;br/&amp;gt;Winter Year: 2021&amp;lt;br/&amp;gt;Items per Head: 15.46'/>\n <path id='svg_52553b2cf052ba37_e468' d='M 324.935653 98.531037 L 325.015227 98.913827 L 324.691706 98.949307 L 324.567835 98.690182 L 324.935653 98.531037 Z ' fill='#3A5692' fill-opacity='1' fill-rule='evenodd' stroke='#FFFFFF' stroke-opacity='1' stroke-width='0.21' stroke-linejoin='round' stroke-linecap='butt' title='Highland&amp;lt;br/&amp;gt;Winter Year: 2021&amp;lt;br/&amp;gt;Items per Head: 15.46'/>\n <path id='svg_52553b2cf052ba37_e469' d='M 322.261563 154.770022 L 323.563743 155.817181 L 323.421580 156.231451 L 323.756871 156.331266 L 323.788127 156.810301 L 324.214497 156.723774 L 324.452434 158.419739 L 324.116959 158.743422 L 324.372494 159.332795 L 324.044358 159.510150 L 323.594403 158.590430 L 323.194182 158.186108 L 322.905751 158.292811 L 322.806470 156.648694 L 321.830681 155.649833 L 321.737880 155.288473 L 322.261563 154.770022 Z ' fill='#3A5692' fill-opacity='1' fill-rule='evenodd' stroke='#FFFFFF' stroke-opacity='1' stroke-width='0.21' stroke-linejoin='round' stroke-linecap='butt' title='Highland&amp;lt;br/&amp;gt;Winter Year: 2021&amp;lt;br/&amp;gt;Items per Head: 15.46'/>\n <path id='svg_52553b2cf052ba37_e470' d='M 321.758697 106.753372 L 322.055350 107.128163 L 321.873031 107.304638 L 321.586323 107.166308 L 321.758697 106.753372 Z ' fill='#3A5692' fill-opacity='1' fill-rule='evenodd' stroke='#FFFFFF' stroke-opacity='1' stroke-width='0.21' stroke-linejoin='round' stroke-linecap='butt' title='Highland&amp;lt;br/&amp;gt;Winter Year: 2021&amp;lt;br/&amp;gt;Items per Head: 15.46'/>\n <path id='svg_52553b2cf052ba37_e471' d='M 320.478767 107.960701 L 320.615558 108.208854 L 320.338796 108.266380 L 320.478767 107.960701 Z ' fill='#3A5692' fill-opacity='1' fill-rule='evenodd' stroke='#FFFFFF' stroke-opacity='1' stroke-width='0.21' stroke-linejoin='round' stroke-linecap='butt' title='Highland&amp;lt;br/&amp;gt;Winter Year: 2021&amp;lt;br/&amp;gt;Items per Head: 15.46'/>\n <path id='svg_52553b2cf052ba37_e472' d='M 319.864539 140.116558 L 318.778209 141.504565 L 317.575492 142.291986 L 317.952130 141.546403 L 317.667782 141.592033 L 318.463835 141.258383 L 319.311735 140.147217 L 319.864539 140.116558 Z ' fill='#3A5692' fill-opacity='1' fill-rule='evenodd' stroke='#FFFFFF' stroke-opacity='1' stroke-width='0.21' stroke-linejoin='round' stroke-linecap='butt' title='Highland&amp;lt;br/&amp;gt;Winter Year: 2021&amp;lt;br/&amp;gt;Items per Head: 15.46'/>\n <path id='svg_52553b2cf052ba37_e473' d='M 318.824701 110.626015 L 319.170842 111.257223 L 318.737705 110.956776 L 318.824701 110.626015 Z ' fill='#3A5692' fill-opacity='1' fill-rule='evenodd' stroke='#FFFFFF' stroke-opacity='1' stroke-width='0.21' stroke-linejoin='round' stroke-linecap='butt' title='Highland&amp;lt;br/&amp;gt;Winter Year: 2021&amp;lt;br/&amp;gt;Items per Head: 15.46'/>\n <path id='svg_52553b2cf052ba37_e474' d='M 318.809074 143.170055 L 318.070259 144.329600 L 317.599897 144.131386 L 317.961564 143.509468 L 318.809074 143.170055 Z ' fill='#3A5692' fill-opacity='1' fill-rule='evenodd' stroke='#FFFFFF' stroke-opacity='1' stroke-width='0.21' stroke-linejoin='round' stroke-linecap='butt' title='Highland&amp;lt;br/&amp;gt;Winter Year: 2021&amp;lt;br/&amp;gt;Items per Head: 15.46'/>\n <path id='svg_52553b2cf052ba37_e475' d='M 309.876944 113.295965 L 310.561002 113.350231 L 310.473122 113.707240 L 311.086017 114.164393 L 311.213824 114.961679 L 311.735620 115.100193 L 312.344802 116.201720 L 312.021405 119.792312 L 311.318684 120.232504 L 312.231411 120.600856 L 311.941280 121.145314 L 312.488259 122.267451 L 311.737343 122.775588 L 312.205182 122.463246 L 312.954743 122.510086 L 313.128655 122.995110 L 312.679725 123.515100 L 313.359066 123.125236 L 314.543325 123.761202 L 314.829622 124.297026 L 316.644924 123.620719 L 317.170555 123.719365 L 316.922095 123.954904 L 317.940749 124.135480 L 317.601436 125.192895 L 316.377495 126.012923 L 315.935600 125.877300 L 315.895896 126.469871 L 316.153543 126.584903 L 315.820896 127.089819 L 315.197666 127.350646 L 314.232828 128.794970 L 313.242169 129.260326 L 312.808005 128.594213 L 313.336261 128.026684 L 313.397623 126.900527 L 315.357713 125.595803 L 313.532772 125.914236 L 313.109909 124.597534 L 313.131463 125.470967 L 312.371278 126.808239 L 312.007767 126.491179 L 312.114103 125.381161 L 311.454758 125.058462 L 311.336731 125.607163 L 309.446369 125.817991 L 309.974255 124.987810 L 308.993338 125.051899 L 308.763337 124.282422 L 309.171044 124.235049 L 309.282404 123.849285 L 308.539693 124.124507 L 307.657010 122.663283 L 307.688798 122.240297 L 308.363320 121.948648 L 308.376138 121.627507 L 309.546245 122.663593 L 308.717111 121.651911 L 308.742212 121.277161 L 307.864863 121.805520 L 308.097039 121.204726 L 307.775242 120.954421 L 307.819067 120.317634 L 307.715993 120.113310 L 307.248380 120.894434 L 307.255517 120.115135 L 306.695883 120.406168 L 306.740490 121.549985 L 306.487723 121.679085 L 304.882427 120.699090 L 304.635097 119.600353 L 304.372896 119.331589 L 304.080754 119.480071 L 304.237848 118.644867 L 304.973772 118.880240 L 304.662885 118.087550 L 305.125145 117.428615 L 305.962379 119.100788 L 306.418077 119.060921 L 306.617172 119.403596 L 305.962811 117.740444 L 306.569655 117.616472 L 306.896886 117.980865 L 307.024592 117.708329 L 306.099314 116.633401 L 305.930818 116.779441 L 306.269412 115.329989 L 306.890508 115.821884 L 307.039851 116.755201 L 307.761706 117.143753 L 308.231964 117.964808 L 308.685199 117.566329 L 308.487396 118.460270 L 309.037944 117.350068 L 310.008566 119.096195 L 309.858753 118.467407 L 310.108852 118.462218 L 309.427604 117.670922 L 309.096189 116.587359 L 309.596757 116.046163 L 309.169813 116.066959 L 308.862495 114.740680 L 309.797063 114.133939 L 309.876944 113.295965 Z ' fill='#3A5692' fill-opacity='1' fill-rule='evenodd' stroke='#FFFFFF' stroke-opacity='1' stroke-width='0.21' stroke-linejoin='round' stroke-linecap='butt' title='Highland&amp;lt;br/&amp;gt;Winter Year: 2021&amp;lt;br/&amp;gt;Items per Head: 15.46'/>\n <path id='svg_52553b2cf052ba37_e476' d='M 317.601333 145.289804 L 317.012537 146.737698 L 316.675543 145.975911 L 317.601333 145.289804 Z ' fill='#3A5692' fill-opacity='1' fill-rule='evenodd' stroke='#FFFFFF' stroke-opacity='1' stroke-width='0.21' stroke-linejoin='round' stroke-linecap='butt' title='Highland&amp;lt;br/&amp;gt;Winter Year: 2021&amp;lt;br/&amp;gt;Items per Head: 15.46'/>\n <path id='svg_52553b2cf052ba37_e477' d='M 317.176502 147.539167 L 317.410708 148.075562 L 317.100210 148.341353 L 317.176502 147.539167 Z ' fill='#3A5692' fill-opacity='1' fill-rule='evenodd' stroke='#FFFFFF' stroke-opacity='1' stroke-width='0.21' stroke-linejoin='round' stroke-linecap='butt' title='Highland&amp;lt;br/&amp;gt;Winter Year: 2021&amp;lt;br/&amp;gt;Items per Head: 15.46'/>\n <path id='svg_52553b2cf052ba37_e478' d='M 316.843754 146.603367 L 317.087598 147.148337 L 316.764693 148.546949 L 316.435533 147.752863 L 316.843754 146.603367 Z ' fill='#3A5692' fill-opacity='1' fill-rule='evenodd' stroke='#FFFFFF' stroke-opacity='1' stroke-width='0.21' stroke-linejoin='round' stroke-linecap='butt' title='Highland&amp;lt;br/&amp;gt;Winter Year: 2021&amp;lt;br/&amp;gt;Items per Head: 15.46'/>\n <path id='svg_52553b2cf052ba37_e479' d='M 311.172767 137.454155 L 311.917632 137.897752 L 311.878174 138.335422 L 312.810569 139.308731 L 313.170144 140.656482 L 315.177855 140.923972 L 315.526600 141.532457 L 316.022391 141.578090 L 316.632700 142.432223 L 316.907718 142.356526 L 316.853597 143.133960 L 316.508380 142.785603 L 316.847854 143.289740 L 316.464040 144.005053 L 315.983630 143.809711 L 316.107296 143.279302 L 315.687079 143.348375 L 315.823255 143.681759 L 315.027589 144.324862 L 316.098273 143.964756 L 316.249522 144.283558 L 314.429297 145.554465 L 313.727911 145.263963 L 314.265661 144.782733 L 313.962957 144.512698 L 313.183105 145.247967 L 312.484075 145.190031 L 311.743414 145.810511 L 311.306995 145.570256 L 310.468918 145.934999 L 309.708877 145.728889 L 309.108350 145.812543 L 308.893872 146.292253 L 308.813582 146.070662 L 308.327738 146.205195 L 307.800775 145.583382 L 307.390913 145.659775 L 307.867304 144.335526 L 308.627366 144.443625 L 308.912126 144.630766 L 308.735322 144.914663 L 309.260726 145.065625 L 309.204964 144.502671 L 309.919293 144.785973 L 311.017827 144.608863 L 312.156924 144.140594 L 312.419433 143.655981 L 309.899707 144.190962 L 309.782502 143.565866 L 310.524804 142.983531 L 310.630320 142.412473 L 311.811195 142.159708 L 312.552573 141.282459 L 310.886879 141.657969 L 310.669081 141.001700 L 309.704038 140.284418 L 308.970267 140.375374 L 308.313178 140.027242 L 308.375113 139.640556 L 309.106627 139.110762 L 308.698632 139.142101 L 308.628802 138.441840 L 309.291653 138.548771 L 309.471288 138.294384 L 310.292034 139.017408 L 309.867715 138.532999 L 309.867099 137.873756 L 310.281984 138.147278 L 310.264654 137.696565 L 311.172767 137.454155 Z ' fill='#3A5692' fill-opacity='1' fill-rule='evenodd' stroke='#FFFFFF' stroke-opacity='1' stroke-width='0.21' stroke-linejoin='round' stroke-linecap='butt' title='Highland&amp;lt;br/&amp;gt;Winter Year: 2021&amp;lt;br/&amp;gt;Items per Head: 15.46'/>\n <path id='svg_52553b2cf052ba37_e480' d='M 316.413178 113.035919 L 316.803658 113.057145 L 316.633030 113.281916 L 316.413178 113.035919 Z ' fill='#3A5692' fill-opacity='1' fill-rule='evenodd' stroke='#FFFFFF' stroke-opacity='1' stroke-width='0.21' stroke-linejoin='round' stroke-linecap='butt' title='Highland&amp;lt;br/&amp;gt;Winter Year: 2021&amp;lt;br/&amp;gt;Items per Head: 15.46'/>\n <path id='svg_52553b2cf052ba37_e481' d='M 316.104240 148.156059 L 316.295050 148.917434 L 315.367865 149.038639 L 315.395551 148.620368 L 316.104240 148.156059 Z ' fill='#3A5692' fill-opacity='1' fill-rule='evenodd' stroke='#FFFFFF' stroke-opacity='1' stroke-width='0.21' stroke-linejoin='round' stroke-linecap='butt' title='Highland&amp;lt;br/&amp;gt;Winter Year: 2021&amp;lt;br/&amp;gt;Items per Head: 15.46'/>\n <path id='svg_52553b2cf052ba37_e482' d='M 316.145134 147.335927 L 316.010290 148.128783 L 315.797823 147.895806 L 316.145134 147.335927 Z ' fill='#3A5692' fill-opacity='1' fill-rule='evenodd' stroke='#FFFFFF' stroke-opacity='1' stroke-width='0.21' stroke-linejoin='round' stroke-linecap='butt' title='Highland&amp;lt;br/&amp;gt;Winter Year: 2021&amp;lt;br/&amp;gt;Items per Head: 15.46'/>\n <path id='svg_52553b2cf052ba37_e483' d='M 315.804387 149.308960 L 316.029773 150.199415 L 313.967203 153.307977 L 313.384395 155.124406 L 313.190283 155.360253 L 313.092253 155.112615 L 312.974124 155.633630 L 312.538320 155.609738 L 312.087525 157.285091 L 311.164360 157.156278 L 310.554336 156.302513 L 310.666414 154.691372 L 311.480599 153.690151 L 312.914444 153.551207 L 313.677460 153.131091 L 312.611905 153.468147 L 311.776022 153.126784 L 312.541192 151.727393 L 315.804387 149.308960 Z ' fill='#3A5692' fill-opacity='1' fill-rule='evenodd' stroke='#FFFFFF' stroke-opacity='1' stroke-width='0.21' stroke-linejoin='round' stroke-linecap='butt' title='Highland&amp;lt;br/&amp;gt;Winter Year: 2021&amp;lt;br/&amp;gt;Items per Head: 15.46'/>\n <path id='svg_52553b2cf052ba37_e484' d='M 315.500145 121.665857 L 315.879448 122.210150 L 315.585562 122.181131 L 315.500145 121.665857 Z ' fill='#3A5692' fill-opacity='1' fill-rule='evenodd' stroke='#FFFFFF' stroke-opacity='1' stroke-width='0.21' stroke-linejoin='round' stroke-linecap='butt' title='Highland&amp;lt;br/&amp;gt;Winter Year: 2021&amp;lt;br/&amp;gt;Items per Head: 15.46'/>\n <path id='svg_52553b2cf052ba37_e485' d='M 315.279372 123.310120 L 315.508040 123.603185 L 315.231894 123.757100 L 315.279372 123.310120 Z ' fill='#3A5692' fill-opacity='1' fill-rule='evenodd' stroke='#FFFFFF' stroke-opacity='1' stroke-width='0.21' stroke-linejoin='round' stroke-linecap='butt' title='Highland&amp;lt;br/&amp;gt;Winter Year: 2021&amp;lt;br/&amp;gt;Items per Head: 15.46'/>\n <path id='svg_52553b2cf052ba37_e486' d='M 315.108536 158.877548 L 315.121170 159.900734 L 314.479954 160.767604 L 314.380693 160.051757 L 315.108536 158.877548 Z ' fill='#3A5692' fill-opacity='1' fill-rule='evenodd' stroke='#FFFFFF' stroke-opacity='1' stroke-width='0.21' stroke-linejoin='round' stroke-linecap='butt' title='Highland&amp;lt;br/&amp;gt;Winter Year: 2021&amp;lt;br/&amp;gt;Items per Head: 15.46'/>\n <path id='svg_52553b2cf052ba37_e487' d='M 314.404687 116.411808 L 314.579215 116.776140 L 314.193656 118.072067 L 313.925816 117.323406 L 314.210945 117.257554 L 314.117672 116.701181 L 314.404687 116.411808 Z ' fill='#3A5692' fill-opacity='1' fill-rule='evenodd' stroke='#FFFFFF' stroke-opacity='1' stroke-width='0.21' stroke-linejoin='round' stroke-linecap='butt' title='Highland&amp;lt;br/&amp;gt;Winter Year: 2021&amp;lt;br/&amp;gt;Items per Head: 15.46'/>\n <path id='svg_52553b2cf052ba37_e488' d='M 313.729755 122.287262 L 314.572242 122.761929 L 314.295172 123.502899 L 313.507445 123.138977 L 313.351171 122.684202 L 313.729755 122.287262 Z ' fill='#3A5692' fill-opacity='1' fill-rule='evenodd' stroke='#FFFFFF' stroke-opacity='1' stroke-width='0.21' stroke-linejoin='round' stroke-linecap='butt' title='Highland&amp;lt;br/&amp;gt;Winter Year: 2021&amp;lt;br/&amp;gt;Items per Head: 15.46'/>\n <path id='svg_52553b2cf052ba37_e489' d='M 314.318347 131.687805 L 314.501488 131.869611 L 313.925202 132.022913 L 314.318347 131.687805 Z ' fill='#3A5692' fill-opacity='1' fill-rule='evenodd' stroke='#FFFFFF' stroke-opacity='1' stroke-width='0.21' stroke-linejoin='round' stroke-linecap='butt' title='Highland&amp;lt;br/&amp;gt;Winter Year: 2021&amp;lt;br/&amp;gt;Items per Head: 15.46'/>\n <path id='svg_52553b2cf052ba37_e490' d='M 313.873316 117.924508 L 314.086684 118.788016 L 313.417207 119.890238 L 313.813122 121.544037 L 313.040468 122.190462 L 312.600870 121.686222 L 312.745865 120.042207 L 313.104865 119.170497 L 313.621368 119.330769 L 313.468889 118.519354 L 313.609371 118.358159 L 313.629059 118.751818 L 313.973909 118.473314 L 313.873316 117.924508 Z ' fill='#3A5692' fill-opacity='1' fill-rule='evenodd' stroke='#FFFFFF' stroke-opacity='1' stroke-width='0.21' stroke-linejoin='round' stroke-linecap='butt' title='Highland&amp;lt;br/&amp;gt;Winter Year: 2021&amp;lt;br/&amp;gt;Items per Head: 15.46'/>\n <path id='svg_52553b2cf052ba37_e491' d='M 311.401333 130.842038 L 311.743003 131.342444 L 311.641589 132.149141 L 311.053101 132.527316 L 310.491641 132.171271 L 310.479172 131.756611 L 311.095758 131.515022 L 311.037719 131.038303 L 311.401333 130.842038 Z ' fill='#3A5692' fill-opacity='1' fill-rule='evenodd' stroke='#FFFFFF' stroke-opacity='1' stroke-width='0.21' stroke-linejoin='round' stroke-linecap='butt' title='Highland&amp;lt;br/&amp;gt;Winter Year: 2021&amp;lt;br/&amp;gt;Items per Head: 15.46'/>\n <path id='svg_52553b2cf052ba37_e492' d='M 311.398954 141.724724 L 311.525000 141.897609 L 311.232857 141.854747 L 311.398954 141.724724 Z ' fill='#3A5692' fill-opacity='1' fill-rule='evenodd' stroke='#FFFFFF' stroke-opacity='1' stroke-width='0.21' stroke-linejoin='round' stroke-linecap='butt' title='Highland&amp;lt;br/&amp;gt;Winter Year: 2021&amp;lt;br/&amp;gt;Items per Head: 15.46'/>\n <path id='svg_52553b2cf052ba37_e493' d='M 310.185902 153.819661 L 310.324848 156.719653 L 311.002035 157.860228 L 311.238333 159.702519 L 310.697382 160.294270 L 310.509935 160.144045 L 310.471687 160.619942 L 309.478363 160.946929 L 308.635364 160.786472 L 308.250524 161.643620 L 307.881474 161.919869 L 307.305804 161.813840 L 306.981054 161.580248 L 307.095080 160.935464 L 308.060206 159.915581 L 307.165937 158.422980 L 308.211455 157.483900 L 307.110995 157.229185 L 306.172303 158.897749 L 305.174918 159.635683 L 304.716104 159.093501 L 305.623705 157.823006 L 305.702867 157.138332 L 305.366529 156.857982 L 305.747575 156.505853 L 305.856987 155.519090 L 306.664814 155.440440 L 307.562139 154.734542 L 307.467533 155.980633 L 307.651883 154.931627 L 308.077433 155.065957 L 309.257179 154.004442 L 310.185902 153.819661 Z ' fill='#3A5692' fill-opacity='1' fill-rule='evenodd' stroke='#FFFFFF' stroke-opacity='1' stroke-width='0.21' stroke-linejoin='round' stroke-linecap='butt' title='Highland&amp;lt;br/&amp;gt;Winter Year: 2021&amp;lt;br/&amp;gt;Items per Head: 15.46'/>\n <path id='svg_52553b2cf052ba37_e494' d='M 310.890469 125.765078 L 311.182508 126.100288 L 310.441130 126.548295 L 310.249786 126.108286 L 310.890469 125.765078 Z ' fill='#3A5692' fill-opacity='1' fill-rule='evenodd' stroke='#FFFFFF' stroke-opacity='1' stroke-width='0.21' stroke-linejoin='round' stroke-linecap='butt' title='Highland&amp;lt;br/&amp;gt;Winter Year: 2021&amp;lt;br/&amp;gt;Items per Head: 15.46'/>\n <path id='svg_52553b2cf052ba37_e495' d='M 308.682124 140.916835 L 309.763430 140.931355 L 310.746397 141.658175 L 309.936952 141.874702 L 309.722413 141.607416 L 309.481746 141.936577 L 309.127258 141.428788 L 309.292249 141.171202 L 309.020102 141.545583 L 308.663256 141.344293 L 308.682124 140.916835 Z ' fill='#3A5692' fill-opacity='1' fill-rule='evenodd' stroke='#FFFFFF' stroke-opacity='1' stroke-width='0.21' stroke-linejoin='round' stroke-linecap='butt' title='Highland&amp;lt;br/&amp;gt;Winter Year: 2021&amp;lt;br/&amp;gt;Items per Head: 15.46'/>\n <path id='svg_52553b2cf052ba37_e496' d='M 310.185595 149.357953 L 310.368714 149.652351 L 309.484761 150.984783 L 309.623460 151.375469 L 308.637825 152.339980 L 308.353784 151.815374 L 309.000208 151.696939 L 308.345786 151.465194 L 308.819530 150.464281 L 310.185595 149.357953 Z ' fill='#3A5692' fill-opacity='1' fill-rule='evenodd' stroke='#FFFFFF' stroke-opacity='1' stroke-width='0.21' stroke-linejoin='round' stroke-linecap='butt' title='Highland&amp;lt;br/&amp;gt;Winter Year: 2021&amp;lt;br/&amp;gt;Items per Head: 15.46'/>\n <path id='svg_52553b2cf052ba37_e497' d='M 309.700264 132.955225 L 310.241583 133.066277 L 310.278805 133.476037 L 309.619254 133.454913 L 309.700264 132.955225 Z ' fill='#3A5692' fill-opacity='1' fill-rule='evenodd' stroke='#FFFFFF' stroke-opacity='1' stroke-width='0.21' stroke-linejoin='round' stroke-linecap='butt' title='Highland&amp;lt;br/&amp;gt;Winter Year: 2021&amp;lt;br/&amp;gt;Items per Head: 15.46'/>\n <path id='svg_52553b2cf052ba37_e498' d='M 309.215978 128.069896 L 310.052290 128.673786 L 310.187133 129.065292 L 309.842366 129.249356 L 310.276754 129.426856 L 309.939187 130.406336 L 309.265280 130.966523 L 307.516424 129.188444 L 309.215978 128.069896 Z ' fill='#3A5692' fill-opacity='1' fill-rule='evenodd' stroke='#FFFFFF' stroke-opacity='1' stroke-width='0.21' stroke-linejoin='round' stroke-linecap='butt' title='Highland&amp;lt;br/&amp;gt;Winter Year: 2021&amp;lt;br/&amp;gt;Items per Head: 15.46'/>\n <path id='svg_52553b2cf052ba37_e499' d='M 307.624730 121.457410 L 307.602643 121.798322 L 307.345385 121.759888 L 307.624730 121.457410 Z ' fill='#3A5692' fill-opacity='1' fill-rule='evenodd' stroke='#FFFFFF' stroke-opacity='1' stroke-width='0.21' stroke-linejoin='round' stroke-linecap='butt' title='Highland&amp;lt;br/&amp;gt;Winter Year: 2021&amp;lt;br/&amp;gt;Items per Head: 15.46'/>\n <path id='svg_52553b2cf052ba37_e500' d='M 306.414098 127.673284 L 307.255045 127.780338 L 307.110564 128.050945 L 307.505043 128.342780 L 306.549966 127.972090 L 305.723170 128.184763 L 306.414098 127.673284 Z ' fill='#3A5692' fill-opacity='1' fill-rule='evenodd' stroke='#FFFFFF' stroke-opacity='1' stroke-width='0.21' stroke-linejoin='round' stroke-linecap='butt' title='Highland&amp;lt;br/&amp;gt;Winter Year: 2021&amp;lt;br/&amp;gt;Items per Head: 15.46'/>\n <path id='svg_52553b2cf052ba37_e501' d='M 307.482792 144.205421 L 307.255764 144.951516 L 306.725990 145.116424 L 306.818422 144.563292 L 307.482792 144.205421 Z ' fill='#3A5692' fill-opacity='1' fill-rule='evenodd' stroke='#FFFFFF' stroke-opacity='1' stroke-width='0.21' stroke-linejoin='round' stroke-linecap='butt' title='Highland&amp;lt;br/&amp;gt;Winter Year: 2021&amp;lt;br/&amp;gt;Items per Head: 15.46'/>\n <path id='svg_52553b2cf052ba37_e502' d='M 306.898404 136.371926 L 307.115178 136.782299 L 306.450705 137.963174 L 306.153456 137.872772 L 306.145027 138.313868 L 304.977894 138.926453 L 304.797626 138.610828 L 304.611819 138.968393 L 304.136536 138.740646 L 303.869107 139.195319 L 303.826142 138.548894 L 304.417809 138.443686 L 305.058389 137.454463 L 306.898404 136.371926 Z ' fill='#3A5692' fill-opacity='1' fill-rule='evenodd' stroke='#FFFFFF' stroke-opacity='1' stroke-width='0.21' stroke-linejoin='round' stroke-linecap='butt' title='Highland&amp;lt;br/&amp;gt;Winter Year: 2021&amp;lt;br/&amp;gt;Items per Head: 15.46'/>\n <path id='svg_52553b2cf052ba37_e503' d='M 303.124241 139.210290 L 303.459555 139.933212 L 303.026786 139.950520 L 302.970018 140.251706 L 302.829740 139.918692 L 302.474767 139.978623 L 302.315165 140.751046 L 301.493125 140.707055 L 301.198235 141.659056 L 300.123246 141.407357 L 300.241784 140.588967 L 299.855815 140.232327 L 300.332842 139.856305 L 301.079348 139.634198 L 301.556877 139.962811 L 302.308416 139.462030 L 302.785981 139.636961 L 303.124241 139.210290 Z ' fill='#3A5692' fill-opacity='1' fill-rule='evenodd' stroke='#FFFFFF' stroke-opacity='1' stroke-width='0.21' stroke-linejoin='round' stroke-linecap='butt' title='Highland&amp;lt;br/&amp;gt;Winter Year: 2021&amp;lt;br/&amp;gt;Items per Head: 15.46'/>\n <path id='svg_52553b2cf052ba37_e504' d='M 352.697725 152.386841 L 355.029942 152.646744 L 355.974601 153.861786 L 357.386831 154.200338 L 358.396479 155.206379 L 357.060542 156.619367 L 356.579107 155.986786 L 355.942114 155.991194 L 355.738261 156.431921 L 356.188236 157.147993 L 355.415971 157.878072 L 354.455255 157.461237 L 353.543451 157.871099 L 353.068682 157.498051 L 352.251113 158.096793 L 351.865863 157.944949 L 351.128484 158.641250 L 350.820795 158.048618 L 349.211049 159.376211 L 348.840975 159.887280 L 348.983610 160.231821 L 348.528530 160.492174 L 347.813914 158.395170 L 346.655148 158.977158 L 346.407058 158.494144 L 345.752820 158.557698 L 345.459343 157.841052 L 344.721553 158.134835 L 344.115407 159.026788 L 343.050467 158.667379 L 342.593805 158.096998 L 340.760559 158.791618 L 340.658222 158.297263 L 341.007952 157.971487 L 340.581870 156.934438 L 341.086827 156.420210 L 340.009540 156.588277 L 339.563094 156.118121 L 340.198013 155.951101 L 340.857564 155.198238 L 341.690574 154.987984 L 342.583736 153.835247 L 343.391071 154.107435 L 343.851258 153.665685 L 345.235740 154.006165 L 346.392107 153.828725 L 346.876208 154.291375 L 347.924372 154.060615 L 349.054427 155.035072 L 350.090286 154.987759 L 351.431228 154.346564 L 351.561519 153.581969 L 352.697725 152.386841 Z ' fill='#3B4D86' fill-opacity='1' fill-rule='evenodd' stroke='#FFFFFF' stroke-opacity='1' stroke-width='0.21' stroke-linejoin='round' stroke-linecap='butt' title='Lothian&amp;lt;br/&amp;gt;Winter Year: 2021&amp;lt;br/&amp;gt;Items per Head: 15.98'/>\n <path id='svg_52553b2cf052ba37_e505' d='M 358.551769 76.491919 L 358.744405 76.793290 L 358.338605 76.804509 L 358.455913 77.374437 L 358.120784 77.565330 L 357.777454 77.322879 L 357.982908 76.667739 L 358.551769 76.491919 Z ' fill='#3C467B' fill-opacity='1' fill-rule='evenodd' stroke='#FFFFFF' stroke-opacity='1' stroke-width='0.21' stroke-linejoin='round' stroke-linecap='butt' title='Orkney&amp;lt;br/&amp;gt;Winter Year: 2021&amp;lt;br/&amp;gt;Items per Head: 16.45'/>\n <path id='svg_52553b2cf052ba37_e506' d='M 356.461059 78.143934 L 356.527342 78.474222 L 356.942391 78.537983 L 356.321460 79.442670 L 356.817700 79.375321 L 357.355207 78.792491 L 357.760371 78.866836 L 358.092238 78.323629 L 358.235550 78.984737 L 358.707427 79.171917 L 357.484798 79.148969 L 357.007692 79.973714 L 357.121574 80.410052 L 356.850535 79.957452 L 356.353432 80.470325 L 356.302366 79.991824 L 355.989981 80.275865 L 355.591852 80.112351 L 354.911178 81.255388 L 354.886547 80.404985 L 356.106593 79.331944 L 355.773248 78.430539 L 355.939039 78.855124 L 356.240226 78.778955 L 356.461059 78.143934 Z ' fill='#3C467B' fill-opacity='1' fill-rule='evenodd' stroke='#FFFFFF' stroke-opacity='1' stroke-width='0.21' stroke-linejoin='round' stroke-linecap='butt' title='Orkney&amp;lt;br/&amp;gt;Winter Year: 2021&amp;lt;br/&amp;gt;Items per Head: 16.45'/>\n <path id='svg_52553b2cf052ba37_e507' d='M 355.674337 81.752716 L 355.716091 82.192992 L 356.361430 82.237904 L 355.948677 82.349451 L 356.056552 82.817944 L 356.750865 82.692372 L 356.735853 83.750277 L 356.376278 83.567138 L 355.920315 83.835756 L 355.927041 83.252087 L 355.620584 83.022209 L 355.345238 83.173089 L 355.423704 83.760819 L 354.947478 83.686270 L 355.172004 82.978667 L 355.736375 82.749570 L 355.117246 81.963728 L 355.674337 81.752716 Z ' fill='#3C467B' fill-opacity='1' fill-rule='evenodd' stroke='#FFFFFF' stroke-opacity='1' stroke-width='0.21' stroke-linejoin='round' stroke-linecap='butt' title='Orkney&amp;lt;br/&amp;gt;Winter Year: 2021&amp;lt;br/&amp;gt;Items per Head: 16.45'/>\n <path id='svg_52553b2cf052ba37_e508' d='M 356.158007 81.876916 L 356.300418 82.067151 L 356.003517 82.151810 L 356.158007 81.876916 Z ' fill='#3C467B' fill-opacity='1' fill-rule='evenodd' stroke='#FFFFFF' stroke-opacity='1' stroke-width='0.21' stroke-linejoin='round' stroke-linecap='butt' title='Orkney&amp;lt;br/&amp;gt;Winter Year: 2021&amp;lt;br/&amp;gt;Items per Head: 16.45'/>\n <path id='svg_52553b2cf052ba37_e509' d='M 354.711200 87.626633 L 355.208754 87.708503 L 354.980742 87.949742 L 354.711200 87.626633 Z ' fill='#3C467B' fill-opacity='1' fill-rule='evenodd' stroke='#FFFFFF' stroke-opacity='1' stroke-width='0.21' stroke-linejoin='round' stroke-linecap='butt' title='Orkney&amp;lt;br/&amp;gt;Winter Year: 2021&amp;lt;br/&amp;gt;Items per Head: 16.45'/>\n <path id='svg_52553b2cf052ba37_e510' d='M 348.720672 81.860713 L 350.453305 82.579247 L 350.774036 83.003791 L 350.583574 83.165255 L 351.262793 83.775831 L 351.163224 84.555192 L 350.613435 84.308946 L 350.563948 84.885521 L 349.819595 85.159287 L 350.037948 85.326758 L 351.185722 85.172413 L 351.734507 85.772856 L 352.096214 85.063511 L 352.473793 85.222043 L 352.287023 85.607641 L 352.588579 85.617937 L 352.218157 86.211758 L 352.599900 86.335157 L 352.939807 85.763874 L 353.319027 85.874928 L 353.586335 85.589348 L 353.721342 86.274021 L 353.101660 86.478798 L 353.266301 87.126248 L 353.644680 87.276246 L 353.833666 87.131457 L 353.473210 86.705581 L 354.702422 86.083294 L 354.637842 87.303666 L 353.777657 87.400303 L 353.199587 88.373302 L 352.934946 87.924149 L 352.448568 87.824560 L 352.415723 87.920772 L 351.979932 87.835367 L 351.609220 86.352691 L 348.976598 87.470850 L 348.402853 86.656996 L 348.307387 85.763628 L 347.740145 86.524531 L 347.021018 86.133908 L 346.955330 84.993661 L 347.335577 84.095986 L 347.099648 82.977150 L 347.565557 82.391309 L 347.303173 82.228820 L 348.720672 81.860713 Z ' fill='#3C467B' fill-opacity='1' fill-rule='evenodd' stroke='#FFFFFF' stroke-opacity='1' stroke-width='0.21' stroke-linejoin='round' stroke-linecap='butt' title='Orkney&amp;lt;br/&amp;gt;Winter Year: 2021&amp;lt;br/&amp;gt;Items per Head: 16.45'/>\n <path id='svg_52553b2cf052ba37_e511' d='M 352.392401 87.989089 L 352.247894 88.412393 L 352.581053 88.306897 L 352.548813 88.744321 L 352.922846 88.788946 L 352.332675 89.084228 L 352.655929 89.568061 L 352.027797 90.129027 L 352.111205 91.528666 L 351.451409 91.421407 L 351.428849 90.305093 L 350.930454 89.829545 L 351.391114 89.728131 L 351.149094 89.394520 L 350.770509 89.536766 L 351.025880 89.223274 L 351.719863 89.379610 L 352.365489 89.018210 L 351.334040 88.777053 L 352.237045 88.713292 L 352.120003 88.226012 L 352.392401 87.989089 Z ' fill='#3C467B' fill-opacity='1' fill-rule='evenodd' stroke='#FFFFFF' stroke-opacity='1' stroke-width='0.21' stroke-linejoin='round' stroke-linecap='butt' title='Orkney&amp;lt;br/&amp;gt;Winter Year: 2021&amp;lt;br/&amp;gt;Items per Head: 16.45'/>\n <path id='svg_52553b2cf052ba37_e512' d='M 354.400374 79.815738 L 354.591575 80.235116 L 354.310055 80.124615 L 354.400374 79.815738 Z ' fill='#3C467B' fill-opacity='1' fill-rule='evenodd' stroke='#FFFFFF' stroke-opacity='1' stroke-width='0.21' stroke-linejoin='round' stroke-linecap='butt' title='Orkney&amp;lt;br/&amp;gt;Winter Year: 2021&amp;lt;br/&amp;gt;Items per Head: 16.45'/>\n <path id='svg_52553b2cf052ba37_e513' d='M 354.168773 79.718610 L 354.128474 80.159275 L 354.466904 80.366000 L 354.114898 81.089680 L 354.393627 82.068402 L 353.778477 82.355048 L 353.347124 81.092858 L 353.913116 81.089127 L 353.782498 80.078677 L 354.168773 79.718610 Z ' fill='#3C467B' fill-opacity='1' fill-rule='evenodd' stroke='#FFFFFF' stroke-opacity='1' stroke-width='0.21' stroke-linejoin='round' stroke-linecap='butt' title='Orkney&amp;lt;br/&amp;gt;Winter Year: 2021&amp;lt;br/&amp;gt;Items per Head: 16.45'/>\n <path id='svg_52553b2cf052ba37_e514' d='M 353.606371 83.441748 L 353.363859 84.370944 L 353.566832 84.804388 L 353.314208 85.030351 L 352.054152 84.736096 L 352.435034 83.652494 L 352.975450 84.140204 L 353.606371 83.441748 Z ' fill='#3C467B' fill-opacity='1' fill-rule='evenodd' stroke='#FFFFFF' stroke-opacity='1' stroke-width='0.21' stroke-linejoin='round' stroke-linecap='butt' title='Orkney&amp;lt;br/&amp;gt;Winter Year: 2021&amp;lt;br/&amp;gt;Items per Head: 16.45'/>\n <path id='svg_52553b2cf052ba37_e515' d='M 351.898677 77.188057 L 352.190020 77.466315 L 351.513118 78.168277 L 352.499205 78.469833 L 352.762408 79.351345 L 353.043189 79.310267 L 353.257912 79.765841 L 353.007710 79.709832 L 352.712000 80.239872 L 352.801682 79.601630 L 352.355809 79.101860 L 352.021010 78.936091 L 351.544701 79.543735 L 350.553899 77.878494 L 351.300385 77.935200 L 351.898677 77.188057 Z ' fill='#3C467B' fill-opacity='1' fill-rule='evenodd' stroke='#FFFFFF' stroke-opacity='1' stroke-width='0.21' stroke-linejoin='round' stroke-linecap='butt' title='Orkney&amp;lt;br/&amp;gt;Winter Year: 2021&amp;lt;br/&amp;gt;Items per Head: 16.45'/>\n <path id='svg_52553b2cf052ba37_e516' d='M 352.808738 76.613739 L 352.826231 77.799414 L 352.475988 78.074390 L 352.808738 76.613739 Z ' fill='#3C467B' fill-opacity='1' fill-rule='evenodd' stroke='#FFFFFF' stroke-opacity='1' stroke-width='0.21' stroke-linejoin='round' stroke-linecap='butt' title='Orkney&amp;lt;br/&amp;gt;Winter Year: 2021&amp;lt;br/&amp;gt;Items per Head: 16.45'/>\n <path id='svg_52553b2cf052ba37_e517' d='M 352.222196 81.533134 L 352.250252 82.634413 L 351.956347 81.877429 L 352.222196 81.533134 Z ' fill='#3C467B' fill-opacity='1' fill-rule='evenodd' stroke='#FFFFFF' stroke-opacity='1' stroke-width='0.21' stroke-linejoin='round' stroke-linecap='butt' title='Orkney&amp;lt;br/&amp;gt;Winter Year: 2021&amp;lt;br/&amp;gt;Items per Head: 16.45'/>\n <path id='svg_52553b2cf052ba37_e518' d='M 351.729995 83.337997 L 351.928886 83.633174 L 351.591872 83.783952 L 351.373642 83.441933 L 351.729995 83.337997 Z ' fill='#3C467B' fill-opacity='1' fill-rule='evenodd' stroke='#FFFFFF' stroke-opacity='1' stroke-width='0.21' stroke-linejoin='round' stroke-linecap='butt' title='Orkney&amp;lt;br/&amp;gt;Winter Year: 2021&amp;lt;br/&amp;gt;Items per Head: 16.45'/>\n <path id='svg_52553b2cf052ba37_e519' d='M 350.483904 80.827971 L 350.975060 81.353931 L 351.886701 81.312627 L 351.581780 81.722918 L 351.740761 82.333678 L 350.840914 82.541861 L 350.195842 82.081425 L 349.908335 81.425793 L 350.483904 80.827971 Z ' fill='#3C467B' fill-opacity='1' fill-rule='evenodd' stroke='#FFFFFF' stroke-opacity='1' stroke-width='0.21' stroke-linejoin='round' stroke-linecap='butt' title='Orkney&amp;lt;br/&amp;gt;Winter Year: 2021&amp;lt;br/&amp;gt;Items per Head: 16.45'/>\n <path id='svg_52553b2cf052ba37_e520' d='M 351.749786 82.508308 L 351.707457 82.901352 L 351.134534 82.824527 L 351.749786 82.508308 Z ' fill='#3C467B' fill-opacity='1' fill-rule='evenodd' stroke='#FFFFFF' stroke-opacity='1' stroke-width='0.21' stroke-linejoin='round' stroke-linecap='butt' title='Orkney&amp;lt;br/&amp;gt;Winter Year: 2021&amp;lt;br/&amp;gt;Items per Head: 16.45'/>\n <path id='svg_52553b2cf052ba37_e521' d='M 350.385670 88.802462 L 349.896872 89.201392 L 350.302877 89.226639 L 350.255973 89.647695 L 349.552206 89.585064 L 349.516318 89.183817 L 350.385670 88.802462 Z ' fill='#3C467B' fill-opacity='1' fill-rule='evenodd' stroke='#FFFFFF' stroke-opacity='1' stroke-width='0.21' stroke-linejoin='round' stroke-linecap='butt' title='Orkney&amp;lt;br/&amp;gt;Winter Year: 2021&amp;lt;br/&amp;gt;Items per Head: 16.45'/>\n <path id='svg_52553b2cf052ba37_e522' d='M 347.027908 86.866817 L 348.714336 88.152039 L 348.675288 89.018148 L 349.248518 89.477088 L 348.160445 90.231079 L 349.393697 89.795828 L 349.386213 90.247874 L 349.632887 90.268650 L 348.443830 90.294061 L 348.441718 90.594589 L 347.646463 90.431241 L 346.714560 88.385629 L 346.071048 88.249473 L 346.476252 87.101290 L 347.027908 86.866817 Z ' fill='#3C467B' fill-opacity='1' fill-rule='evenodd' stroke='#FFFFFF' stroke-opacity='1' stroke-width='0.21' stroke-linejoin='round' stroke-linecap='butt' title='Orkney&amp;lt;br/&amp;gt;Winter Year: 2021&amp;lt;br/&amp;gt;Items per Head: 16.45'/>\n <path id='svg_52553b2cf052ba37_e523' d='M 347.578601 86.700022 L 348.115696 87.129961 L 347.607272 87.071861 L 347.578601 86.700022 Z ' fill='#3C467B' fill-opacity='1' fill-rule='evenodd' stroke='#FFFFFF' stroke-opacity='1' stroke-width='0.21' stroke-linejoin='round' stroke-linecap='butt' title='Orkney&amp;lt;br/&amp;gt;Winter Year: 2021&amp;lt;br/&amp;gt;Items per Head: 16.45'/>\n <path id='svg_52553b2cf052ba37_e524' d='M 377.055831 52.689510 L 377.129928 52.969901 L 376.617464 53.179968 L 377.055831 52.689510 Z ' fill='#3A669E' fill-opacity='1' fill-rule='evenodd' stroke='#FFFFFF' stroke-opacity='1' stroke-width='0.21' stroke-linejoin='round' stroke-linecap='butt' title='Shetland&amp;lt;br/&amp;gt;Winter Year: 2021&amp;lt;br/&amp;gt;Items per Head: 14.55'/>\n <path id='svg_52553b2cf052ba37_e525' d='M 375.578303 43.241695 L 375.610029 44.171013 L 376.048089 43.260953 L 376.888277 43.833671 L 376.395379 44.047266 L 376.667299 44.723838 L 376.053667 44.586821 L 376.645561 45.484289 L 375.711402 46.515042 L 376.126164 46.934789 L 375.861422 47.164032 L 375.217458 46.806980 L 374.827490 47.281647 L 374.454750 46.954024 L 374.412708 46.140764 L 374.774600 46.177454 L 374.627020 45.590421 L 374.972176 44.709174 L 374.715104 44.496809 L 375.578303 43.241695 Z ' fill='#3A669E' fill-opacity='1' fill-rule='evenodd' stroke='#FFFFFF' stroke-opacity='1' stroke-width='0.21' stroke-linejoin='round' stroke-linecap='butt' title='Shetland&amp;lt;br/&amp;gt;Winter Year: 2021&amp;lt;br/&amp;gt;Items per Head: 14.55'/>\n <path id='svg_52553b2cf052ba37_e526' d='M 375.765852 48.088551 L 376.161870 48.201346 L 376.436825 48.865511 L 376.815371 48.496955 L 376.530611 49.564439 L 376.178706 49.116431 L 375.522664 49.030645 L 375.867984 49.558798 L 375.483348 49.709945 L 374.861021 48.642810 L 374.983661 48.158895 L 375.427566 48.387459 L 375.765852 48.088551 Z ' fill='#3A669E' fill-opacity='1' fill-rule='evenodd' stroke='#FFFFFF' stroke-opacity='1' stroke-width='0.21' stroke-linejoin='round' stroke-linecap='butt' title='Shetland&amp;lt;br/&amp;gt;Winter Year: 2021&amp;lt;br/&amp;gt;Items per Head: 14.55'/>\n <path id='svg_52553b2cf052ba37_e527' d='M 375.242663 47.044816 L 375.643008 47.223198 L 375.544567 47.490217 L 375.242663 47.044816 Z ' fill='#3A669E' fill-opacity='1' fill-rule='evenodd' stroke='#FFFFFF' stroke-opacity='1' stroke-width='0.21' stroke-linejoin='round' stroke-linecap='butt' title='Shetland&amp;lt;br/&amp;gt;Winter Year: 2021&amp;lt;br/&amp;gt;Items per Head: 14.55'/>\n <path id='svg_52553b2cf052ba37_e528' d='M 375.346045 53.695242 L 374.616398 55.008397 L 373.945607 54.945927 L 374.329875 54.149238 L 375.346045 53.695242 Z ' fill='#3A669E' fill-opacity='1' fill-rule='evenodd' stroke='#FFFFFF' stroke-opacity='1' stroke-width='0.21' stroke-linejoin='round' stroke-linecap='butt' title='Shetland&amp;lt;br/&amp;gt;Winter Year: 2021&amp;lt;br/&amp;gt;Items per Head: 14.55'/>\n <path id='svg_52553b2cf052ba37_e529' d='M 374.388303 48.421914 L 374.634403 48.608745 L 374.247513 48.952466 L 374.388303 48.421914 Z ' fill='#3A669E' fill-opacity='1' fill-rule='evenodd' stroke='#FFFFFF' stroke-opacity='1' stroke-width='0.21' stroke-linejoin='round' stroke-linecap='butt' title='Shetland&amp;lt;br/&amp;gt;Winter Year: 2021&amp;lt;br/&amp;gt;Items per Head: 14.55'/>\n <path id='svg_52553b2cf052ba37_e530' d='M 373.725470 45.814064 L 374.242323 46.112155 L 374.481000 47.981087 L 373.913287 47.916178 L 373.508082 47.360420 L 374.064167 48.493488 L 373.765051 48.875356 L 373.326397 48.750644 L 374.258074 49.335770 L 374.141894 50.059511 L 373.756541 50.028522 L 374.068905 50.416604 L 374.008178 51.217005 L 373.552380 51.413682 L 373.011921 51.039301 L 373.180255 51.692699 L 372.274337 52.051883 L 372.097411 52.418429 L 372.458974 52.513342 L 372.151758 52.751959 L 372.456923 53.012927 L 372.134427 52.764160 L 371.439808 53.412944 L 372.430467 53.142643 L 372.504811 53.986072 L 372.994244 52.792154 L 373.094017 53.109933 L 373.787201 52.301081 L 372.762806 53.861257 L 372.899290 54.156785 L 373.130829 53.598135 L 373.513721 53.726723 L 373.512798 54.451593 L 373.031979 54.713586 L 372.244414 54.591090 L 372.474047 55.247155 L 372.608788 54.883602 L 372.838913 55.249697 L 373.415896 55.147955 L 373.459169 55.630661 L 372.584095 56.191219 L 372.711493 56.549009 L 373.174512 56.291608 L 373.244035 56.684342 L 372.769472 56.679093 L 372.392937 57.158601 L 372.526426 56.668694 L 372.199029 56.779831 L 372.118144 56.477968 L 372.207131 57.015247 L 371.792655 57.358250 L 372.308749 57.297339 L 371.932236 58.029530 L 372.519987 57.499552 L 371.943782 58.675606 L 372.668775 57.936586 L 372.574108 58.818222 L 372.938399 59.205257 L 372.616109 59.211943 L 372.672262 59.668624 L 372.479626 59.386327 L 372.454360 59.899959 L 372.126656 59.657487 L 372.182213 60.178504 L 371.894623 60.326104 L 372.148026 61.519836 L 372.520499 61.839337 L 372.092857 61.583843 L 371.817880 61.851438 L 372.154834 63.242830 L 371.966362 62.731267 L 371.816096 63.048862 L 371.591899 62.697861 L 371.323731 62.835861 L 371.601517 63.655253 L 371.403242 64.440767 L 371.171579 64.401966 L 371.434333 64.721220 L 371.407097 65.233767 L 371.103901 65.280689 L 371.447602 65.462866 L 371.345674 65.996187 L 371.124101 65.467008 L 370.937147 65.933840 L 370.869345 64.992546 L 370.506470 65.299721 L 370.147266 65.176979 L 370.020216 64.616894 L 370.342793 64.457030 L 370.327433 63.859518 L 370.727715 63.849613 L 370.700234 63.344080 L 370.360964 63.330606 L 370.435820 63.073123 L 370.713770 63.271255 L 370.520826 62.654752 L 370.853268 62.336563 L 371.328591 60.395749 L 371.399222 59.371292 L 370.959193 59.595615 L 371.177198 58.144336 L 370.802611 58.963031 L 371.356339 57.219100 L 370.693096 58.883562 L 371.076994 56.879358 L 370.466376 58.048665 L 370.358728 57.034195 L 369.511895 56.815638 L 370.137421 57.229355 L 370.321587 58.209963 L 370.219969 57.851578 L 369.932747 58.071737 L 369.888306 57.674777 L 369.860455 58.545276 L 369.627583 58.881204 L 369.461669 58.370996 L 369.164912 59.301319 L 368.189533 58.294048 L 368.239060 57.983654 L 368.885998 57.972578 L 368.683785 57.880495 L 369.066329 57.603366 L 368.655689 57.738579 L 368.827775 57.374287 L 368.360019 57.007474 L 368.565863 57.410526 L 368.159590 58.071532 L 367.987483 57.435094 L 367.293931 57.922640 L 366.999327 57.639420 L 367.168850 57.418462 L 366.553598 57.290612 L 366.673858 56.310167 L 366.413504 56.068167 L 367.095921 55.615034 L 367.570999 55.643951 L 367.890008 56.083652 L 367.852375 55.740546 L 368.308400 55.955700 L 368.141542 55.660872 L 368.655176 55.348118 L 368.971724 56.371898 L 369.176296 56.040380 L 368.850827 55.638516 L 369.342516 55.850286 L 369.115077 55.538229 L 369.536320 55.120576 L 370.195173 56.105596 L 370.459506 55.676437 L 370.111683 55.256752 L 370.341070 54.750091 L 370.620006 54.928125 L 370.517647 54.416421 L 371.385276 54.601038 L 370.940530 54.180779 L 370.236293 54.208199 L 370.345172 53.622991 L 370.098046 54.038737 L 369.777888 53.872209 L 369.838615 53.066763 L 369.231566 53.139465 L 369.257816 52.490373 L 369.570344 52.339349 L 369.083186 52.318102 L 369.454183 51.876965 L 369.050475 51.927109 L 369.174265 51.446474 L 368.711369 52.314000 L 368.707103 51.589991 L 368.076306 51.451745 L 367.422518 51.849793 L 367.182467 51.527196 L 367.418930 51.015818 L 367.970236 51.136038 L 367.928461 50.368060 L 368.297407 49.942100 L 368.472549 50.503929 L 369.247254 51.115386 L 369.858199 50.927222 L 369.184395 50.966905 L 368.696296 50.364983 L 369.402913 49.533880 L 369.405887 48.449601 L 370.515576 48.927283 L 370.413158 48.293019 L 372.197492 48.110597 L 372.492403 47.587940 L 372.555670 48.411640 L 373.038029 48.772095 L 372.628783 48.268819 L 372.805771 46.000588 L 373.265877 45.940397 L 373.408410 46.441930 L 373.362163 45.880718 L 373.764519 46.075958 L 373.725470 45.814064 Z ' fill='#3A669E' fill-opacity='1' fill-rule='evenodd' stroke='#FFFFFF' stroke-opacity='1' stroke-width='0.21' stroke-linejoin='round' stroke-linecap='butt' title='Shetland&amp;lt;br/&amp;gt;Winter Year: 2021&amp;lt;br/&amp;gt;Items per Head: 14.55'/>\n <path id='svg_52553b2cf052ba37_e531' d='M 374.022945 59.046604 L 374.372511 59.131714 L 374.323496 59.574081 L 374.022945 59.046604 Z ' fill='#3A669E' fill-opacity='1' fill-rule='evenodd' stroke='#FFFFFF' stroke-opacity='1' stroke-width='0.21' stroke-linejoin='round' stroke-linecap='butt' title='Shetland&amp;lt;br/&amp;gt;Winter Year: 2021&amp;lt;br/&amp;gt;Items per Head: 14.55'/>\n <path id='svg_52553b2cf052ba37_e532' d='M 373.650922 58.171100 L 373.564377 58.880999 L 373.921633 58.789838 L 373.622212 60.246860 L 373.053513 59.862019 L 373.146683 59.189896 L 372.741128 58.654729 L 372.950149 58.391669 L 373.532180 58.685042 L 373.398260 58.352291 L 373.650922 58.171100 Z ' fill='#3A669E' fill-opacity='1' fill-rule='evenodd' stroke='#FFFFFF' stroke-opacity='1' stroke-width='0.21' stroke-linejoin='round' stroke-linecap='butt' title='Shetland&amp;lt;br/&amp;gt;Winter Year: 2021&amp;lt;br/&amp;gt;Items per Head: 14.55'/>\n <path id='svg_52553b2cf052ba37_e533' d='M 371.018053 60.405697 L 370.626753 61.709929 L 370.665514 60.838875 L 371.018053 60.405697 Z ' fill='#3A669E' fill-opacity='1' fill-rule='evenodd' stroke='#FFFFFF' stroke-opacity='1' stroke-width='0.21' stroke-linejoin='round' stroke-linecap='butt' title='Shetland&amp;lt;br/&amp;gt;Winter Year: 2021&amp;lt;br/&amp;gt;Items per Head: 14.55'/>\n <path id='svg_52553b2cf052ba37_e534' d='M 370.683118 60.405642 L 370.734832 60.459428 L 370.247654 61.694753 L 370.683118 60.405642 Z ' fill='#3A669E' fill-opacity='1' fill-rule='evenodd' stroke='#FFFFFF' stroke-opacity='1' stroke-width='0.21' stroke-linejoin='round' stroke-linecap='butt' title='Shetland&amp;lt;br/&amp;gt;Winter Year: 2021&amp;lt;br/&amp;gt;Items per Head: 14.55'/>\n <path id='svg_52553b2cf052ba37_e535' d='M 370.745307 60.221541 L 370.847218 59.919852 L 370.790553 60.226904 L 370.745307 60.221541 Z ' fill='#3A669E' fill-opacity='1' fill-rule='evenodd' stroke='#FFFFFF' stroke-opacity='1' stroke-width='0.21' stroke-linejoin='round' stroke-linecap='butt' title='Shetland&amp;lt;br/&amp;gt;Winter Year: 2021&amp;lt;br/&amp;gt;Items per Head: 14.55'/>\n <path id='svg_52553b2cf052ba37_e536' d='M 369.518785 53.722211 L 370.080428 54.230942 L 369.483819 54.762807 L 368.980440 54.094131 L 369.518785 53.722211 Z ' fill='#3A669E' fill-opacity='1' fill-rule='evenodd' stroke='#FFFFFF' stroke-opacity='1' stroke-width='0.21' stroke-linejoin='round' stroke-linecap='butt' title='Shetland&amp;lt;br/&amp;gt;Winter Year: 2021&amp;lt;br/&amp;gt;Items per Head: 14.55'/>\n <path id='svg_52553b2cf052ba37_e537' d='M 369.002280 54.845149 L 369.417372 55.168977 L 369.021457 55.541102 L 369.002280 54.845149 Z ' fill='#3A669E' fill-opacity='1' fill-rule='evenodd' stroke='#FFFFFF' stroke-opacity='1' stroke-width='0.21' stroke-linejoin='round' stroke-linecap='butt' title='Shetland&amp;lt;br/&amp;gt;Winter Year: 2021&amp;lt;br/&amp;gt;Items per Head: 14.55'/>\n <path id='svg_52553b2cf052ba37_e538' d='M 367.769316 57.860296 L 367.954507 58.256005 L 367.535212 58.104346 L 367.769316 57.860296 Z ' fill='#3A669E' fill-opacity='1' fill-rule='evenodd' stroke='#FFFFFF' stroke-opacity='1' stroke-width='0.21' stroke-linejoin='round' stroke-linecap='butt' title='Shetland&amp;lt;br/&amp;gt;Winter Year: 2021&amp;lt;br/&amp;gt;Items per Head: 14.55'/>\n <path id='svg_52553b2cf052ba37_e539' d='M 367.592328 72.850713 L 367.588841 73.542768 L 367.053060 73.796069 L 367.224715 72.885475 L 367.592328 72.850713 Z ' fill='#3A669E' fill-opacity='1' fill-rule='evenodd' stroke='#FFFFFF' stroke-opacity='1' stroke-width='0.21' stroke-linejoin='round' stroke-linecap='butt' title='Shetland&amp;lt;br/&amp;gt;Winter Year: 2021&amp;lt;br/&amp;gt;Items per Head: 14.55'/>\n <path id='svg_52553b2cf052ba37_e540' d='M 366.234876 54.748349 L 366.599988 55.085835 L 366.794038 54.818488 L 366.840469 55.323590 L 366.237645 55.360423 L 366.007232 54.965842 L 366.234876 54.748349 Z ' fill='#3A669E' fill-opacity='1' fill-rule='evenodd' stroke='#FFFFFF' stroke-opacity='1' stroke-width='0.21' stroke-linejoin='round' stroke-linecap='butt' title='Shetland&amp;lt;br/&amp;gt;Winter Year: 2021&amp;lt;br/&amp;gt;Items per Head: 14.55'/>\n <path id='svg_52553b2cf052ba37_e541' d='M 362.211434 59.065165 L 362.597196 59.480768 L 362.315719 60.165440 L 361.710925 59.616226 L 362.211434 59.065165 Z ' fill='#3A669E' fill-opacity='1' fill-rule='evenodd' stroke='#FFFFFF' stroke-opacity='1' stroke-width='0.21' stroke-linejoin='round' stroke-linecap='butt' title='Shetland&amp;lt;br/&amp;gt;Winter Year: 2021&amp;lt;br/&amp;gt;Items per Head: 14.55'/>\n <path id='svg_52553b2cf052ba37_e542' d='M 318.166033 81.143391 L 318.293083 81.508440 L 317.958897 81.563814 L 318.166033 81.143391 Z ' fill='#3B548F' fill-opacity='1' fill-rule='evenodd' stroke='#FFFFFF' stroke-opacity='1' stroke-width='0.21' stroke-linejoin='round' stroke-linecap='butt' title='Western Isles&amp;lt;br/&amp;gt;Winter Year: 2021&amp;lt;br/&amp;gt;Items per Head: 15.56'/>\n <path id='svg_52553b2cf052ba37_e543' d='M 306.391058 105.478333 L 305.407771 106.418920 L 305.783771 107.219733 L 305.491076 107.392660 L 305.935719 107.398054 L 306.294431 108.153583 L 305.811766 108.279813 L 306.337294 109.073489 L 304.688320 108.604586 L 304.976151 108.954744 L 304.548653 108.954642 L 304.630112 109.286221 L 304.993398 109.313088 L 305.383961 110.273127 L 304.648119 110.057297 L 304.676523 110.737028 L 303.894332 110.002621 L 304.181839 110.467219 L 304.007437 110.730875 L 303.820071 110.488691 L 303.848393 111.041167 L 303.547700 110.857003 L 303.636541 111.363969 L 303.039460 111.147257 L 303.301946 111.562286 L 302.828531 111.661629 L 302.704025 112.100939 L 302.336924 112.000797 L 302.320824 112.295256 L 300.567765 109.674898 L 301.171943 109.792615 L 301.193785 110.202578 L 301.905919 109.832239 L 302.326771 109.099943 L 302.723301 109.105378 L 302.917824 108.273763 L 304.538419 108.505999 L 303.948372 107.946858 L 304.182517 107.730945 L 303.406662 107.631008 L 303.569685 107.355089 L 303.312303 107.534742 L 302.407062 106.886265 L 302.450233 107.143441 L 302.109485 107.171640 L 301.441116 106.773881 L 301.367388 106.144580 L 301.068582 106.252659 L 301.478237 105.527687 L 301.853644 105.820035 L 302.172548 105.352236 L 303.652025 105.013746 L 302.042013 105.300863 L 301.786274 105.101214 L 302.303289 104.847320 L 301.846670 104.784769 L 302.257044 104.229607 L 301.818163 104.656284 L 301.509306 104.551385 L 301.024386 103.182961 L 301.624563 102.374417 L 301.521714 101.822228 L 302.284627 101.860004 L 302.019044 101.555822 L 302.594714 100.503022 L 302.550087 100.775827 L 303.129061 101.097254 L 303.346347 100.754150 L 303.933504 101.306544 L 303.886909 101.538944 L 303.262079 101.492924 L 304.072859 101.922514 L 304.310653 103.573235 L 304.129359 102.101038 L 304.318343 102.294227 L 304.240411 101.923847 L 304.469081 102.078069 L 304.581548 101.666794 L 305.807480 101.923457 L 305.952249 102.527101 L 306.158461 102.440453 L 306.296053 102.135492 L 305.726801 101.873498 L 305.956596 101.488842 L 305.182158 100.483951 L 305.099509 100.012667 L 305.625877 99.897984 L 305.036855 99.852190 L 305.332587 99.329738 L 305.909900 99.319380 L 307.247272 98.307782 L 307.376661 98.582451 L 308.514713 98.153005 L 308.883823 97.451988 L 311.600552 95.713161 L 312.171815 94.927155 L 313.051440 96.124682 L 312.856508 96.578432 L 313.129270 97.263104 L 312.525912 98.316211 L 313.096252 98.972686 L 312.208217 99.496327 L 311.561218 100.558806 L 311.107059 100.601484 L 310.864074 101.368396 L 311.426949 101.942385 L 313.046518 100.766699 L 313.301110 100.895082 L 313.030050 101.748847 L 311.925652 102.618897 L 311.380291 102.007068 L 310.682574 102.384075 L 310.171609 101.792325 L 310.352533 103.144916 L 309.677253 103.411443 L 310.315619 103.368663 L 310.288035 103.628301 L 308.887208 103.303077 L 309.651453 103.783446 L 309.087247 104.198679 L 307.108616 104.524354 L 309.482115 104.523698 L 309.911603 104.048927 L 309.897350 104.673205 L 310.129300 104.510265 L 310.226304 104.885670 L 310.122736 105.516304 L 309.391161 105.472908 L 310.295828 105.736770 L 309.878276 106.617504 L 309.300883 106.199645 L 309.139277 106.433748 L 309.033227 106.126634 L 307.671162 106.362399 L 308.828861 106.514757 L 309.104494 106.828637 L 308.771335 107.970956 L 308.175052 108.179732 L 307.867222 107.475166 L 307.896446 108.405733 L 307.521553 108.190190 L 307.437877 108.510327 L 306.748385 107.282489 L 307.108820 108.324316 L 306.789402 108.078113 L 306.563399 108.280941 L 306.012646 107.257981 L 305.943287 106.117611 L 306.391058 105.478333 Z M 306.514137 105.302613 L 306.608518 105.167867 L 307.540872 105.240856 L 306.321051 105.051296 L 306.514137 105.302613 Z ' fill='#3B548F' fill-opacity='1' fill-rule='evenodd' stroke='#FFFFFF' stroke-opacity='1' stroke-width='0.21' stroke-linejoin='round' stroke-linecap='butt' title='Western Isles&amp;lt;br/&amp;gt;Winter Year: 2021&amp;lt;br/&amp;gt;Items per Head: 15.56'/>\n <path id='svg_52553b2cf052ba37_e544' d='M 305.866564 109.103000 L 306.503719 109.336303 L 306.586575 109.679306 L 305.977391 109.759617 L 305.866564 109.103000 Z ' fill='#3B548F' fill-opacity='1' fill-rule='evenodd' stroke='#FFFFFF' stroke-opacity='1' stroke-width='0.21' stroke-linejoin='round' stroke-linecap='butt' title='Western Isles&amp;lt;br/&amp;gt;Winter Year: 2021&amp;lt;br/&amp;gt;Items per Head: 15.56'/>\n <path id='svg_52553b2cf052ba37_e545' d='M 304.217442 100.229543 L 304.709438 100.357208 L 304.825906 100.939216 L 305.074387 100.773016 L 305.418928 101.707278 L 304.417317 101.484988 L 304.611716 101.075248 L 304.217442 100.229543 Z ' fill='#3B548F' fill-opacity='1' fill-rule='evenodd' stroke='#FFFFFF' stroke-opacity='1' stroke-width='0.21' stroke-linejoin='round' stroke-linecap='butt' title='Western Isles&amp;lt;br/&amp;gt;Winter Year: 2021&amp;lt;br/&amp;gt;Items per Head: 15.56'/>\n <path id='svg_52553b2cf052ba37_e546' d='M 302.232740 107.866055 L 302.477817 108.557190 L 302.132045 108.823901 L 301.715211 108.468182 L 301.313452 108.880402 L 301.236134 108.441623 L 302.232740 107.866055 Z ' fill='#3B548F' fill-opacity='1' fill-rule='evenodd' stroke='#FFFFFF' stroke-opacity='1' stroke-width='0.21' stroke-linejoin='round' stroke-linecap='butt' title='Western Isles&amp;lt;br/&amp;gt;Winter Year: 2021&amp;lt;br/&amp;gt;Items per Head: 15.56'/>\n <path id='svg_52553b2cf052ba37_e547' d='M 300.948094 105.100393 L 301.223625 105.910025 L 300.632675 105.764559 L 300.433948 105.343418 L 300.948094 105.100393 Z ' fill='#3B548F' fill-opacity='1' fill-rule='evenodd' stroke='#FFFFFF' stroke-opacity='1' stroke-width='0.21' stroke-linejoin='round' stroke-linecap='butt' title='Western Isles&amp;lt;br/&amp;gt;Winter Year: 2021&amp;lt;br/&amp;gt;Items per Head: 15.56'/>\n <path id='svg_52553b2cf052ba37_e548' d='M 301.112346 111.167787 L 301.128567 111.702360 L 300.863189 111.287372 L 301.112346 111.167787 Z ' fill='#3B548F' fill-opacity='1' fill-rule='evenodd' stroke='#FFFFFF' stroke-opacity='1' stroke-width='0.21' stroke-linejoin='round' stroke-linecap='butt' title='Western Isles&amp;lt;br/&amp;gt;Winter Year: 2021&amp;lt;br/&amp;gt;Items per Head: 15.56'/>\n <path id='svg_52553b2cf052ba37_e549' d='M 297.037756 119.052244 L 297.520800 119.359257 L 297.270649 119.045888 L 296.542396 118.813219 L 296.519734 117.762593 L 297.502887 117.250397 L 297.626123 117.313015 L 297.467304 117.103248 L 298.238318 117.125809 L 297.455921 117.073613 L 297.760184 116.625178 L 297.454917 116.219213 L 297.436029 117.039264 L 296.981870 117.285466 L 297.029245 116.695335 L 296.590876 116.121920 L 296.863126 115.769074 L 296.561447 116.088493 L 296.204499 115.548997 L 296.650556 115.449123 L 297.552598 115.939704 L 296.635892 115.415099 L 295.760901 115.553571 L 295.091425 114.565414 L 295.497738 114.442180 L 295.844679 113.381998 L 296.410403 113.346395 L 296.952440 113.818929 L 296.476133 113.396722 L 297.310927 113.265920 L 297.283119 113.461046 L 297.709816 113.332675 L 298.102347 112.697530 L 298.227623 113.407898 L 298.367008 113.318524 L 298.565508 113.709845 L 298.415819 113.267048 L 298.723013 113.429024 L 298.785072 112.943631 L 299.409533 113.000111 L 299.685663 112.753652 L 299.579465 112.963852 L 300.043468 113.584005 L 299.620585 113.858819 L 300.250501 114.155062 L 300.662699 113.963534 L 299.996504 113.737717 L 300.462045 113.642864 L 301.103548 114.239045 L 300.581609 114.943508 L 300.205853 114.497697 L 300.455871 114.373312 L 300.050748 114.574665 L 299.817465 114.307542 L 299.878785 114.612298 L 299.445751 114.184184 L 299.851201 114.063492 L 299.184883 114.126556 L 299.546282 114.324155 L 299.380370 114.571321 L 299.962562 114.745601 L 299.583648 114.784138 L 299.954052 114.878435 L 299.551164 115.205504 L 300.544182 115.252569 L 300.304335 115.876128 L 298.584547 116.027748 L 300.006655 116.104489 L 300.052594 116.605202 L 299.599582 117.018263 L 298.907609 116.864326 L 299.228566 117.157596 L 298.531588 117.125192 L 298.266701 116.833523 L 298.405359 117.196459 L 299.010561 117.161596 L 299.073215 117.926661 L 298.308396 117.405215 L 297.943317 117.474187 L 298.422361 117.717598 L 298.301299 118.010541 L 298.534911 117.793234 L 299.091672 118.208038 L 298.668687 118.154920 L 298.856749 118.520687 L 298.477959 118.309554 L 298.449042 118.636457 L 298.288769 118.365542 L 298.138339 118.630511 L 299.022866 118.946750 L 298.588705 119.242379 L 299.054553 119.285446 L 298.504620 119.305545 L 298.643051 119.583434 L 297.629957 119.071789 L 298.248469 119.597995 L 297.864912 119.577967 L 297.888033 119.592662 L 297.464658 119.605296 L 298.100501 119.998730 L 297.711559 120.131520 L 298.467499 120.694580 L 298.014263 120.663590 L 298.143712 120.856923 L 298.654639 120.727699 L 298.150688 121.123845 L 298.529640 121.296912 L 298.582859 121.805315 L 298.925656 121.890015 L 298.098451 122.723989 L 297.854810 123.531508 L 297.485201 123.473414 L 297.910594 123.861898 L 298.032618 124.931514 L 297.714123 125.229092 L 297.085151 124.848331 L 297.445770 125.262314 L 296.982465 124.968183 L 296.709375 125.129852 L 296.864562 125.462559 L 297.970580 125.561635 L 298.000154 125.940200 L 298.362906 126.014153 L 298.119574 126.501330 L 297.500528 126.164069 L 296.311122 126.178056 L 295.850790 125.529766 L 295.890002 123.552550 L 295.513139 122.959036 L 295.941765 122.697594 L 295.831163 121.929923 L 296.353534 121.557429 L 296.124433 119.650168 L 297.037756 119.052244 Z M 298.543986 116.025559 L 298.627731 115.647848 L 298.042955 115.998522 L 298.543986 116.025559 Z M 297.459426 123.449875 L 297.615477 123.426812 L 297.449359 123.189940 L 296.884270 123.340861 L 296.734560 123.042873 L 296.844115 123.375972 L 297.359841 123.358930 L 297.459426 123.449875 Z ' fill='#3B548F' fill-opacity='1' fill-rule='evenodd' stroke='#FFFFFF' stroke-opacity='1' stroke-width='0.21' stroke-linejoin='round' stroke-linecap='butt' title='Western Isles&amp;lt;br/&amp;gt;Winter Year: 2021&amp;lt;br/&amp;gt;Items per Head: 15.56'/>\n <path id='svg_52553b2cf052ba37_e550' d='M 299.712259 112.701010 L 299.148480 112.546382 L 299.568186 111.943845 L 300.051179 111.891754 L 300.489013 112.640209 L 299.894761 112.339782 L 299.712259 112.701010 Z ' fill='#3B548F' fill-opacity='1' fill-rule='evenodd' stroke='#FFFFFF' stroke-opacity='1' stroke-width='0.21' stroke-linejoin='round' stroke-linecap='butt' title='Western Isles&amp;lt;br/&amp;gt;Winter Year: 2021&amp;lt;br/&amp;gt;Items per Head: 15.56'/>\n <path id='svg_52553b2cf052ba37_e551' d='M 299.375816 117.250909 L 299.676983 117.547665 L 299.347515 118.043273 L 299.056213 117.526625 L 299.436419 117.532592 L 299.176372 117.337660 L 299.375816 117.250909 Z ' fill='#3B548F' fill-opacity='1' fill-rule='evenodd' stroke='#FFFFFF' stroke-opacity='1' stroke-width='0.21' stroke-linejoin='round' stroke-linecap='butt' title='Western Isles&amp;lt;br/&amp;gt;Winter Year: 2021&amp;lt;br/&amp;gt;Items per Head: 15.56'/>\n <path id='svg_52553b2cf052ba37_e552' d='M 299.312856 110.775276 L 299.666933 111.133250 L 299.093006 111.364894 L 298.816040 111.063521 L 299.312856 110.775276 Z ' fill='#3B548F' fill-opacity='1' fill-rule='evenodd' stroke='#FFFFFF' stroke-opacity='1' stroke-width='0.21' stroke-linejoin='round' stroke-linecap='butt' title='Western Isles&amp;lt;br/&amp;gt;Winter Year: 2021&amp;lt;br/&amp;gt;Items per Head: 15.56'/>\n <path id='svg_52553b2cf052ba37_e553' d='M 299.149404 119.351483 L 299.140482 119.718685 L 298.747644 119.793132 L 298.930271 119.898853 L 298.565940 119.753550 L 299.149404 119.351483 Z ' fill='#3B548F' fill-opacity='1' fill-rule='evenodd' stroke='#FFFFFF' stroke-opacity='1' stroke-width='0.21' stroke-linejoin='round' stroke-linecap='butt' title='Western Isles&amp;lt;br/&amp;gt;Winter Year: 2021&amp;lt;br/&amp;gt;Items per Head: 15.56'/>\n <path id='svg_52553b2cf052ba37_e554' d='M 298.476626 112.196305 L 298.549431 112.681942 L 298.303842 112.504546 L 298.476626 112.196305 Z ' fill='#3B548F' fill-opacity='1' fill-rule='evenodd' stroke='#FFFFFF' stroke-opacity='1' stroke-width='0.21' stroke-linejoin='round' stroke-linecap='butt' title='Western Isles&amp;lt;br/&amp;gt;Winter Year: 2021&amp;lt;br/&amp;gt;Items per Head: 15.56'/>\n <path id='svg_52553b2cf052ba37_e555' d='M 298.261369 119.493483 L 298.517601 119.567600 L 298.308416 119.820593 L 298.261369 119.493483 Z ' fill='#3B548F' fill-opacity='1' fill-rule='evenodd' stroke='#FFFFFF' stroke-opacity='1' stroke-width='0.21' stroke-linejoin='round' stroke-linecap='butt' title='Western Isles&amp;lt;br/&amp;gt;Winter Year: 2021&amp;lt;br/&amp;gt;Items per Head: 15.56'/>\n <path id='svg_52553b2cf052ba37_e556' d='M 297.011504 126.403814 L 297.613222 126.567162 L 297.245076 127.423409 L 297.011504 126.403814 Z ' fill='#3B548F' fill-opacity='1' fill-rule='evenodd' stroke='#FFFFFF' stroke-opacity='1' stroke-width='0.21' stroke-linejoin='round' stroke-linecap='butt' title='Western Isles&amp;lt;br/&amp;gt;Winter Year: 2021&amp;lt;br/&amp;gt;Items per Head: 15.56'/>\n <path id='svg_52553b2cf052ba37_e557' d='M 296.805765 127.990631 L 296.840669 128.252955 L 296.496232 128.107753 L 296.805765 127.990631 Z ' fill='#3B548F' fill-opacity='1' fill-rule='evenodd' stroke='#FFFFFF' stroke-opacity='1' stroke-width='0.21' stroke-linejoin='round' stroke-linecap='butt' title='Western Isles&amp;lt;br/&amp;gt;Winter Year: 2021&amp;lt;br/&amp;gt;Items per Head: 15.56'/>\n <path id='svg_52553b2cf052ba37_e558' d='M 296.454393 128.118214 L 296.698135 128.441119 L 296.301812 128.272231 L 296.454393 128.118214 Z ' fill='#3B548F' fill-opacity='1' fill-rule='evenodd' stroke='#FFFFFF' stroke-opacity='1' stroke-width='0.21' stroke-linejoin='round' stroke-linecap='butt' title='Western Isles&amp;lt;br/&amp;gt;Winter Year: 2021&amp;lt;br/&amp;gt;Items per Head: 15.56'/>\n <path id='svg_52553b2cf052ba37_e559' d='M 296.060529 127.100484 L 296.262332 127.353045 L 295.925174 127.551567 L 296.060529 127.100484 Z ' fill='#3B548F' fill-opacity='1' fill-rule='evenodd' stroke='#FFFFFF' stroke-opacity='1' stroke-width='0.21' stroke-linejoin='round' stroke-linecap='butt' title='Western Isles&amp;lt;br/&amp;gt;Winter Year: 2021&amp;lt;br/&amp;gt;Items per Head: 15.56'/>\n <path id='svg_52553b2cf052ba37_e560' d='M 295.301820 127.110635 L 295.648434 127.306471 L 295.508237 128.070449 L 295.932455 128.471368 L 295.479033 128.206133 L 295.747920 128.448666 L 295.443657 128.440914 L 296.059812 128.989307 L 295.562503 128.668803 L 295.727883 128.966318 L 295.239537 129.325707 L 295.273930 129.648038 L 294.685030 129.740223 L 294.432183 129.369082 L 294.420472 129.628146 L 294.082925 129.578229 L 293.962273 129.761286 L 294.670981 129.996886 L 294.232082 129.905541 L 294.005813 130.154370 L 294.368381 130.298770 L 293.786968 130.430025 L 293.857003 129.994324 L 293.415149 129.822463 L 293.612543 129.493816 L 294.075479 129.579397 L 293.701344 129.340616 L 294.359235 128.860228 L 294.491104 128.274673 L 294.234973 128.085297 L 295.077459 127.959992 L 295.301820 127.110635 Z ' fill='#3B548F' fill-opacity='1' fill-rule='evenodd' stroke='#FFFFFF' stroke-opacity='1' stroke-width='0.21' stroke-linejoin='round' stroke-linecap='butt' title='Western Isles&amp;lt;br/&amp;gt;Winter Year: 2021&amp;lt;br/&amp;gt;Items per Head: 15.56'/>\n <path id='svg_52553b2cf052ba37_e561' d='M 294.056345 130.610601 L 294.495840 131.025487 L 293.946318 130.950117 L 294.056345 130.610601 Z ' fill='#3B548F' fill-opacity='1' fill-rule='evenodd' stroke='#FFFFFF' stroke-opacity='1' stroke-width='0.21' stroke-linejoin='round' stroke-linecap='butt' title='Western Isles&amp;lt;br/&amp;gt;Winter Year: 2021&amp;lt;br/&amp;gt;Items per Head: 15.56'/>\n <path id='svg_52553b2cf052ba37_e562' d='M 293.753129 116.043478 L 293.940780 116.352642 L 294.372072 116.238820 L 294.088851 116.686927 L 294.012457 116.387814 L 293.307584 116.387197 L 293.753129 116.043478 Z ' fill='#3B548F' fill-opacity='1' fill-rule='evenodd' stroke='#FFFFFF' stroke-opacity='1' stroke-width='0.21' stroke-linejoin='round' stroke-linecap='butt' title='Western Isles&amp;lt;br/&amp;gt;Winter Year: 2021&amp;lt;br/&amp;gt;Items per Head: 15.56'/>\n <path id='svg_52553b2cf052ba37_e563' d='M 293.352393 131.499538 L 293.683605 131.819263 L 293.063841 131.748511 L 293.352393 131.499538 Z ' fill='#3B548F' fill-opacity='1' fill-rule='evenodd' stroke='#FFFFFF' stroke-opacity='1' stroke-width='0.21' stroke-linejoin='round' stroke-linecap='butt' title='Western Isles&amp;lt;br/&amp;gt;Winter Year: 2021&amp;lt;br/&amp;gt;Items per Head: 15.56'/>\n <path id='svg_52553b2cf052ba37_e564' d='M 292.383783 133.049256 L 292.776210 133.219783 L 292.161163 133.140724 L 292.383783 133.049256 Z ' fill='#3B548F' fill-opacity='1' fill-rule='evenodd' stroke='#FFFFFF' stroke-opacity='1' stroke-width='0.21' stroke-linejoin='round' stroke-linecap='butt' title='Western Isles&amp;lt;br/&amp;gt;Winter Year: 2021&amp;lt;br/&amp;gt;Items per Head: 15.56'/>\n <path id='svg_52553b2cf052ba37_e565' d='M 292.705271 132.172132 L 292.683307 132.787364 L 292.120762 132.805513 L 292.248016 132.293727 L 292.705271 132.172132 Z ' fill='#3B548F' fill-opacity='1' fill-rule='evenodd' stroke='#FFFFFF' stroke-opacity='1' stroke-width='0.21' stroke-linejoin='round' stroke-linecap='butt' title='Western Isles&amp;lt;br/&amp;gt;Winter Year: 2021&amp;lt;br/&amp;gt;Items per Head: 15.56'/>\n <path id='svg_52553b2cf052ba37_e566' d='M 282.547229 108.326058 L 283.155510 108.446136 L 283.311579 108.758377 L 282.998415 108.951361 L 283.251796 109.182286 L 282.567739 108.756837 L 282.547229 108.326058 Z ' fill='#3B548F' fill-opacity='1' fill-rule='evenodd' stroke='#FFFFFF' stroke-opacity='1' stroke-width='0.21' stroke-linejoin='round' stroke-linecap='butt' title='Western Isles&amp;lt;br/&amp;gt;Winter Year: 2021&amp;lt;br/&amp;gt;Items per Head: 15.56'/>\n <path id='svg_52553b2cf052ba37_e567' d='M 351.774355 143.575136 L 354.148860 143.776282 L 353.241978 143.843038 L 353.132251 144.069504 L 352.838270 143.727781 L 352.904136 146.011899 L 354.696147 146.667907 L 355.623475 147.554999 L 355.371243 148.010120 L 352.766901 149.752617 L 351.985632 149.661992 L 351.049238 149.045037 L 348.374471 151.251066 L 348.076627 152.456980 L 346.740237 152.554581 L 346.182757 153.062182 L 345.370747 153.231562 L 345.261888 153.685720 L 344.324203 153.525181 L 344.327874 153.175123 L 343.976750 153.040218 L 341.208339 152.447219 L 340.839578 151.972509 L 341.147060 151.374362 L 342.276193 151.233940 L 341.835220 150.934230 L 342.901330 150.589238 L 343.066339 150.142135 L 344.994890 150.655028 L 345.593695 150.497708 L 345.579112 150.073636 L 345.917481 149.885287 L 346.539255 149.951201 L 346.385319 149.611992 L 347.003094 149.376166 L 346.963205 148.829351 L 346.642740 148.710914 L 346.776824 148.511018 L 345.667073 148.354641 L 345.854335 148.004152 L 345.474807 147.688159 L 346.095269 147.228463 L 346.626006 147.255617 L 346.549016 146.677053 L 347.125590 146.091415 L 346.864355 145.840371 L 351.774355 143.575136 Z ' fill='#1D1524' fill-opacity='1' fill-rule='evenodd' stroke='#FFFFFF' stroke-opacity='1' stroke-width='0.21' stroke-linejoin='round' stroke-linecap='butt' title='Fife&amp;lt;br/&amp;gt;Winter Year: 2021&amp;lt;br/&amp;gt;Items per Head: 20.24'/>\n <path id='svg_52553b2cf052ba37_e568' d='M 352.148059 131.551014 L 353.507972 132.036961 L 354.474226 133.068022 L 354.787491 133.741108 L 354.660196 134.731643 L 355.327662 136.080932 L 356.404846 136.048939 L 357.252459 136.915399 L 357.766543 136.765298 L 357.536664 138.299081 L 356.823894 138.840379 L 356.747131 139.520992 L 357.029779 139.709650 L 356.293301 141.012939 L 354.167337 142.587081 L 353.850832 143.413510 L 352.833429 143.062344 L 350.028535 143.598043 L 350.281895 143.711783 L 349.419416 143.913175 L 349.444230 144.369078 L 349.128503 144.529145 L 349.362709 144.570163 L 349.024074 144.561263 L 349.254937 144.651170 L 347.014537 145.558525 L 347.538608 145.550957 L 346.864355 145.840371 L 347.125590 146.091415 L 346.549016 146.677053 L 346.626006 147.255617 L 346.095269 147.228463 L 345.474807 147.688159 L 345.854335 148.004152 L 345.667073 148.354641 L 346.776824 148.511018 L 347.003094 149.376166 L 346.385319 149.611992 L 346.539255 149.951201 L 345.579112 150.073636 L 345.593695 150.497708 L 343.426755 150.437804 L 343.128439 150.126261 L 342.901330 150.589238 L 342.147871 150.702547 L 342.059848 150.104441 L 342.763923 149.815004 L 343.004876 149.295056 L 342.462819 149.065034 L 341.832841 149.437835 L 340.943699 149.406251 L 340.399611 148.748854 L 339.680279 149.223420 L 339.561535 148.527055 L 339.224685 148.780848 L 338.886439 148.322997 L 338.378445 148.447790 L 337.584319 147.353463 L 337.170499 147.474317 L 336.664926 146.984003 L 336.229329 147.191343 L 335.282967 146.614441 L 334.677252 146.024004 L 334.677560 144.763455 L 335.238464 144.728898 L 335.219596 143.103503 L 335.717643 143.418410 L 336.531828 142.972660 L 335.858229 141.925193 L 334.034416 142.671187 L 333.650292 141.196632 L 333.230383 140.997804 L 332.758280 141.438119 L 331.614731 141.743182 L 331.415800 141.475546 L 331.134320 141.887151 L 330.519275 141.856900 L 329.786919 142.572233 L 329.174230 142.234460 L 329.572810 141.345728 L 329.057538 140.754984 L 330.300142 140.216124 L 330.796855 140.318360 L 329.889871 139.137075 L 329.987286 138.413539 L 329.542356 138.744134 L 328.899828 138.661074 L 328.904236 137.878269 L 329.655870 137.949945 L 330.495279 137.560696 L 330.579773 136.039689 L 331.130321 135.775030 L 331.487270 135.036622 L 332.446552 135.789283 L 333.339590 134.485973 L 333.880501 134.694851 L 334.233860 134.079291 L 335.555319 133.687682 L 335.896579 132.755883 L 336.364170 133.101244 L 338.161426 133.295870 L 338.865478 132.001994 L 339.383830 132.604223 L 340.304452 132.275986 L 340.785067 132.637653 L 341.325565 132.411137 L 341.693692 132.877908 L 342.138723 132.458102 L 343.289246 132.517678 L 343.544780 133.595374 L 343.837949 133.415843 L 344.727295 133.879436 L 345.182274 133.575400 L 345.897710 133.862518 L 347.002703 133.138366 L 347.019418 132.652521 L 349.050264 133.604112 L 349.540005 132.013992 L 352.148059 131.551014 Z ' fill='#3A3360' fill-opacity='1' fill-rule='evenodd' stroke='#FFFFFF' stroke-opacity='1' stroke-width='0.21' stroke-linejoin='round' stroke-linecap='butt' title='Tayside&amp;lt;br/&amp;gt;Winter Year: 2021&amp;lt;br/&amp;gt;Items per Head: 17.66'/>\n <path id='svg_52553b2cf052ba37_e569' d='M 330.051888 151.717755 L 331.439261 152.035922 L 331.128578 152.335488 L 331.310201 153.166735 L 332.152154 154.114572 L 332.768964 153.928683 L 333.151468 154.421378 L 333.775025 154.479519 L 333.947255 153.675692 L 333.699514 152.926519 L 334.944106 153.321882 L 335.410120 152.875864 L 336.010277 154.112009 L 335.863560 154.653391 L 336.792510 154.425829 L 336.517430 154.882757 L 336.676575 155.353608 L 334.919272 155.536995 L 335.284055 156.223145 L 336.342104 156.242565 L 336.407279 157.158861 L 336.047295 157.188864 L 335.929515 157.560334 L 335.136394 157.603032 L 334.752005 157.102791 L 334.392329 157.231050 L 334.711808 158.104032 L 333.682122 158.788214 L 334.432074 159.852436 L 334.409515 160.582207 L 334.036364 160.908805 L 332.717980 160.391991 L 332.334699 159.794889 L 332.119545 160.001778 L 331.642192 159.495158 L 331.259771 159.539333 L 331.405730 159.125454 L 330.964204 158.841925 L 330.466834 159.235850 L 329.967536 158.328414 L 329.379641 158.808229 L 329.171031 158.467995 L 328.804505 158.827323 L 328.527292 157.810393 L 328.081850 157.761685 L 328.071595 157.402993 L 327.300889 156.938067 L 327.730869 156.727344 L 327.144410 155.724688 L 325.945939 156.057477 L 326.176146 154.540348 L 327.266598 153.911867 L 328.516012 154.403742 L 328.653275 154.801296 L 329.537414 154.794897 L 329.578552 153.654979 L 329.033645 153.282443 L 329.794794 152.912081 L 329.573324 152.226056 L 329.892516 151.453319 L 330.051888 151.717755 Z ' fill='#281E37' fill-opacity='1' fill-rule='evenodd' stroke='#FFFFFF' stroke-opacity='1' stroke-width='0.21' stroke-linejoin='round' stroke-linecap='butt' title='Greater Glasgow and Clyde&amp;lt;br/&amp;gt;Winter Year: 2021&amp;lt;br/&amp;gt;Items per Head: 19.39'/>\n <path id='svg_52553b2cf052ba37_e570' d='M 336.849728 152.910913 L 337.230795 152.982487 L 337.087913 153.396368 L 337.622629 153.456334 L 337.615103 153.978478 L 338.154883 154.050462 L 338.237306 154.498634 L 339.230364 154.610075 L 338.660477 155.080826 L 339.854558 155.870235 L 339.664856 156.342811 L 340.436034 156.618014 L 341.086827 156.420210 L 340.581870 156.934438 L 341.007952 157.971487 L 340.624794 158.723531 L 342.593805 158.096998 L 343.050467 158.667379 L 344.276520 159.152565 L 344.506318 160.106454 L 344.764088 160.420457 L 345.057707 160.294823 L 343.874351 161.806047 L 343.910508 162.550974 L 343.283934 162.652306 L 343.796727 163.776085 L 343.798675 164.817604 L 343.075548 166.488731 L 343.477821 167.203224 L 342.540382 167.805782 L 342.570016 169.098838 L 342.126111 169.153697 L 341.697999 169.921943 L 340.782196 169.175436 L 340.806150 168.260782 L 340.258924 167.980002 L 339.367012 166.370604 L 338.469359 165.996223 L 337.501773 166.092509 L 336.904157 165.650655 L 336.802230 165.202547 L 337.712086 163.752398 L 336.689230 162.917193 L 336.129657 163.466819 L 335.277943 163.323157 L 334.282875 163.804694 L 334.042926 163.526190 L 334.948271 162.579583 L 334.564271 162.338547 L 334.074305 160.967971 L 334.409515 160.582207 L 334.405761 159.721552 L 333.683127 158.782144 L 334.711808 158.104032 L 334.346472 157.676349 L 334.442082 157.173258 L 334.759962 157.107713 L 335.136394 157.603032 L 335.929515 157.560334 L 336.047295 157.188864 L 336.407279 157.158861 L 336.342104 156.242565 L 335.284055 156.223145 L 334.919272 155.536995 L 336.676575 155.353608 L 336.517430 154.882757 L 336.789331 154.419266 L 335.863560 154.653391 L 336.010277 154.112009 L 335.520251 153.424054 L 336.849728 152.910913 Z ' fill='#2B203C' fill-opacity='1' fill-rule='evenodd' stroke='#FFFFFF' stroke-opacity='1' stroke-width='0.21' stroke-linejoin='round' stroke-linecap='butt' title='Lanarkshire&amp;lt;br/&amp;gt;Winter Year: 2021&amp;lt;br/&amp;gt;Items per Head: 19.19'/>\n <\/g>\n <g clip-path='url(#svg_52553b2cf052ba37_c8)'>\n <text x='102.66' y='203.69' font-size='7.5pt' font-weight='bold' font-family='Helvetica'>2022<\/text>\n <\/g>\n <g clip-path='url(#svg_52553b2cf052ba37_c9)'>\n <text x='210.68' y='203.69' font-size='7.5pt' font-weight='bold' font-family='Helvetica'>2023<\/text>\n <\/g>\n <g clip-path='url(#svg_52553b2cf052ba37_c10)'>\n <text x='102.66' y='35.08' font-size='7.5pt' font-weight='bold' font-family='Helvetica'>2019<\/text>\n <\/g>\n <g clip-path='url(#svg_52553b2cf052ba37_c11)'>\n <text x='210.68' y='35.08' font-size='7.5pt' font-weight='bold' font-family='Helvetica'>2020<\/text>\n <\/g>\n <g clip-path='url(#svg_52553b2cf052ba37_c12)'>\n <text x='318.71' y='35.08' font-size='7.5pt' font-weight='bold' font-family='Helvetica'>2021<\/text>\n <\/g>\n <g clip-path='url(#svg_52553b2cf052ba37_c1)'>\n <text x='387.53' y='155.77' font-size='6pt' font-family='Helvetica'>Items per Head<\/text>\n <image x='387.53' y='160.64' width='17.28' height='86.4' preserveAspectRatio='none' xlink:href='data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAEsCAYAAAACUNnVAAAAvElEQVQ4ja1PyxIDIQhLaHvq/38ve3BFQNSdTi9MXgTF9/1RIQVtiKExQELYhnSErmEYoA/DInfYqpAicdetVRvhBen4OpK1gq7vBgqGAjgtfp9Su+PNSxd2corY3ezKogqV0TV90hLeotvc1AeP2Cgm46TNBgtN8Y9mPYe1MLTYqKqSpvYZwlD85T0Y6CG8MpA0bgqShu3JE2Vd9bRlICEhL7AjEiJAR43yRP2uGY5i6xb0aa6k+LmUu9wF6sEQDhgmSYEAAAAASUVORK5CYII=' xmlns:xlink='http://www.w3.org/1999/xlink'/>\n <polyline points='401.35,222.48 404.81,222.48' fill='none' stroke='#FFFFFF' stroke-opacity='1' stroke-width='0.37' stroke-linejoin='round' stroke-linecap='round'/>\n <polyline points='401.35,195.42 404.81,195.42' fill='none' stroke='#FFFFFF' stroke-opacity='1' stroke-width='0.37' stroke-linejoin='round' stroke-linecap='round'/>\n <polyline points='401.35,168.36 404.81,168.36' fill='none' stroke='#FFFFFF' stroke-opacity='1' stroke-width='0.37' stroke-linejoin='round' stroke-linecap='round'/>\n <polyline points='390.98,222.48 387.53,222.48' fill='none' stroke='#FFFFFF' stroke-opacity='1' stroke-width='0.37' stroke-linejoin='round' stroke-linecap='round'/>\n <polyline points='390.98,195.42 387.53,195.42' fill='none' stroke='#FFFFFF' stroke-opacity='1' stroke-width='0.37' stroke-linejoin='round' stroke-linecap='round'/>\n <polyline points='390.98,168.36 387.53,168.36' fill='none' stroke='#FFFFFF' stroke-opacity='1' stroke-width='0.37' stroke-linejoin='round' stroke-linecap='round'/>\n <text x='408.79' y='224.77' font-size='4.8pt' font-family='Helvetica'>10<\/text>\n <text x='408.79' y='197.72' font-size='4.8pt' font-family='Helvetica'>15<\/text>\n <text x='408.79' y='170.66' font-size='4.8pt' font-family='Helvetica'>20<\/text>\n <text x='61.77' y='25' font-size='6pt' font-family='Helvetica'>By Health Board and Winter Year<\/text>\n <text x='61.77' y='12.63' font-size='9pt' font-weight='bold' font-family='Helvetica'>Antidepressant Prescriptions per Head<\/text>\n <\/g>\n <\/g>\n<\/svg>","js":null,"uid":"svg_52553b2cf052ba37","ratio":1.4,"settings":{"tooltip":{"css":".tooltip_SVGID_ { padding:5px;background:black;color:white;border-radius:2px;text-align:left; ; position:absolute;pointer-events:none;z-index:999;}","placement":"doc","opacity":0.9,"offx":10,"offy":10,"use_cursor_pos":true,"use_fill":false,"use_stroke":false,"delay_over":200,"delay_out":500},"hover":{"css":".hover_data_SVGID_ { fill:orange;stroke:black;cursor:pointer; }\ntext.hover_data_SVGID_ { stroke:none;fill:orange; }\ncircle.hover_data_SVGID_ { fill:orange;stroke:black; }\nline.hover_data_SVGID_, polyline.hover_data_SVGID_ { fill:none;stroke:orange; }\nrect.hover_data_SVGID_, polygon.hover_data_SVGID_, path.hover_data_SVGID_ { fill:orange;stroke:none; }\nimage.hover_data_SVGID_ { stroke:orange; }","reactive":true,"nearest_distance":null},"hover_inv":{"css":""},"hover_key":{"css":".hover_key_SVGID_ { fill:orange;stroke:black;cursor:pointer; }\ntext.hover_key_SVGID_ { stroke:none;fill:orange; }\ncircle.hover_key_SVGID_ { fill:orange;stroke:black; }\nline.hover_key_SVGID_, polyline.hover_key_SVGID_ { fill:none;stroke:orange; }\nrect.hover_key_SVGID_, polygon.hover_key_SVGID_, path.hover_key_SVGID_ { fill:orange;stroke:none; }\nimage.hover_key_SVGID_ { stroke:orange; }","reactive":true},"hover_theme":{"css":".hover_theme_SVGID_ { fill:orange;stroke:black;cursor:pointer; }\ntext.hover_theme_SVGID_ { stroke:none;fill:orange; }\ncircle.hover_theme_SVGID_ { fill:orange;stroke:black; }\nline.hover_theme_SVGID_, polyline.hover_theme_SVGID_ { fill:none;stroke:orange; }\nrect.hover_theme_SVGID_, polygon.hover_theme_SVGID_, path.hover_theme_SVGID_ { fill:orange;stroke:none; }\nimage.hover_theme_SVGID_ { stroke:orange; }","reactive":true},"select":{"css":".select_data_SVGID_ { fill:red;stroke:black;cursor:pointer; }\ntext.select_data_SVGID_ { stroke:none;fill:red; }\ncircle.select_data_SVGID_ { fill:red;stroke:black; }\nline.select_data_SVGID_, polyline.select_data_SVGID_ { fill:none;stroke:red; }\nrect.select_data_SVGID_, polygon.select_data_SVGID_, path.select_data_SVGID_ { fill:red;stroke:none; }\nimage.select_data_SVGID_ { stroke:red; }","type":"multiple","only_shiny":true,"selected":[]},"select_inv":{"css":""},"select_key":{"css":".select_key_SVGID_ { fill:red;stroke:black;cursor:pointer; }\ntext.select_key_SVGID_ { stroke:none;fill:red; }\ncircle.select_key_SVGID_ { fill:red;stroke:black; }\nline.select_key_SVGID_, polyline.select_key_SVGID_ { fill:none;stroke:red; }\nrect.select_key_SVGID_, polygon.select_key_SVGID_, path.select_key_SVGID_ { fill:red;stroke:none; }\nimage.select_key_SVGID_ { stroke:red; }","type":"single","only_shiny":true,"selected":[]},"select_theme":{"css":".select_theme_SVGID_ { fill:red;stroke:black;cursor:pointer; }\ntext.select_theme_SVGID_ { stroke:none;fill:red; }\ncircle.select_theme_SVGID_ { fill:red;stroke:black; }\nline.select_theme_SVGID_, polyline.select_theme_SVGID_ { fill:none;stroke:red; }\nrect.select_theme_SVGID_, polygon.select_theme_SVGID_, path.select_theme_SVGID_ { fill:red;stroke:none; }\nimage.select_theme_SVGID_ { stroke:red; }","type":"single","only_shiny":true,"selected":[]},"zoom":{"min":1,"max":1,"duration":300,"default_on":false},"toolbar":{"position":"topright","pngname":"diagram","tooltips":null,"fixed":false,"hidden":[],"delay_over":200,"delay_out":500},"sizing":{"rescale":true,"width":1}}},"evals":[],"jsHooks":[]}</script>

Figure 3

winter_population <- list.files(here("data", "winter_population"), pattern = "csv", full.names = TRUE) %>%
  map_dfr(read_csv) %>%
  clean_names() %>%
  select(date, practice_code, hb, all_ages) %>%
  mutate(winter_year = as.numeric(substr(date, 1, 4)),
    winter_year = case_when(
      winter_year == 2020 ~ 2019,
      winter_year == 2023 ~ 2022,
      TRUE ~ winter_year ),
    healthboards = hb) %>%
  select(-hb)
#summarise and filter combined population data for selected years
summary_winter_with_simd <- combined_pop_simd %>%
  filter(!is.na(simd2020v2_quintile), winter_year %in% c("2019","2022")) %>%
  group_by(simd2020v2_quintile, h_bname, gp_practice, winter_year) %>%
  summarise(avg_paid_over_winters = mean(paid_quantity), .groups = "drop") %>%
  rename(practice_code = gp_practice) %>%
  mutate(winter_year = as.numeric(winter_year))
# Join datasets
joined_data <- summary_winter_with_simd %>%
  full_join(winter_population, by = c("winter_year", "practice_code"))
# Calculate prescriptions per 1000
final_boxplot <- joined_data %>%
  group_by(simd2020v2_quintile, h_bname, practice_code, winter_year) %>%
  reframe(
    avg_per_1000 = (avg_paid_over_winters / all_ages) * 1000,
    year_label = factor(winter_year,
                        levels = c(2019, 2022),
                        labels = c("Pre-COVID (2019)", "Post-COVID (2022)"))
  )

#create boxplot of average prescriptions per 1000 by SIMD quintile, faceted by pre/post COVID
box2 <- final_boxplot %>%
  ggplot(aes(x = simd2020v2_quintile, y = avg_per_1000, fill = factor(simd2020v2_quintile))) +
  geom_boxplot() +
  scale_fill_viridis(discrete = TRUE, alpha = 0.6) +
  scale_y_continuous(labels = scales::label_comma()) +
  coord_cartesian(ylim = c(0, 70000))  + #scaled y axis graph to be able to visualise better
  theme_minimal(base_size=7) +
  theme(legend.position = "none") +
  facet_wrap(~year_label) +
  labs(title = "Average Winter Antidepressant Prescriptions Per by SIMD Quintile",
    x = "SIMD Quintile (1 = Most Deprived)",
    y = "Avg prescriptions per 1000")

ggplotly(box2, height=250)

The boxplot shows no strong socioeconomic gradient in antidepressant prescribing across SIMD quintiles, with median rates remaining relatively flat in both 2019 and 2022. Although overall prescribing increased uniformly after COVID-19, greater variability and more extreme outliers in 2022 suggest widening differences between individual health boards or practices, rather than between deprivation groups.


Figure 4

#create population-weighted deprivation profile per health board
hb_deprivation <- SIMD %>%
  group_by(h_bname) %>%
  summarise(
#weighted mean SIMD quintile (lower value = more deprived)
    avg_quintile = weighted.mean(simd2020v2_quintile, w = population, na.rm = TRUE),
#percentage of population living in most deprived quintiles (Q1 & Q2)
    pct_deprived = sum(population[simd2020v2_quintile <= 2], na.rm = TRUE) / 
                   sum(population, na.rm = TRUE) * 100,
#total population per health board (for reference)
    total_pop = sum(population, na.rm = TRUE)
  ) %>%
  arrange(avg_quintile)  #rank health boards from most to least deprived
#join deprivation ranking to prescribing data (2019 = pre-COVID, 2022 = post-COVID)
final_lollipop_data <- combined %>% 
  filter(winter_year %in% c("2019", "2022")) %>%
  mutate(period = ifelse(winter_year == 2019, "pre", "post")) %>%
  full_join(hb_deprivation, by = "h_bname")
#calculate percentage change in prescribing per health board
change_summary <- final_lollipop_data %>% 
  group_by(h_bname, period) %>% 
  summarise(avg_prescribe = mean(total_paid),     
    avg_quintile = first(avg_quintile),
    pct_deprived = first(pct_deprived),
    total_pop = first(total_pop)) %>% 
  pivot_wider(
    names_from = period, 
    values_from = avg_prescribe
  ) %>%
  mutate(
    pct_change = round(((post - pre) / pre) * 100, 1),
    avg_quintile = round(avg_quintile, 2),
    pct_deprived = round(pct_deprived, 1),
    pre = round(pre, 0),
    post = round(post, 0)
  ) %>%
  arrange(desc(pct_change))  #sort by percentage change (highest first)

# Create formatted table
prescribing_table <- change_summary %>%
  select(h_bname, pre, post, pct_change, avg_quintile, pct_deprived) %>%
  rename(
    "Health Board" = h_bname,
    "Pre-COVID (2019)" = pre,
    "Post-COVID (2022)" = post,
    "% Change" = pct_change,
    "Avg SIMD Quintile" = avg_quintile,
    "% in Deprived Areas (Q1-Q2)" = pct_deprived
  )

prescribing_table %>% 
gt() %>% 
tab_header(title=md("**Antidepressant Prescribing** Changes by Health Board **Before and After COVID-19** (2019-2022)"),subtitle=md("with *deprivation indicators*")) %>% 
tab_spanner(label="average total prescriptions",columns = c('Pre-COVID (2019)','Post-COVID (2022)')) %>% 
tab_spanner(label="Deprivation",columns = c('Avg SIMD Quintile','% in Deprived Areas (Q1-Q2)')) %>% 
  tab_options(
    table.font.size = px(12),
    data_row.padding = px(2),
    heading.padding = px(2) ) %>% 
   tab_footnote(footnote = md("**Avg SIMD Quintle** 1 represents most deprived areas in scotland ")) %>%
tab_caption(md("The table shows that Glasgow and Lanarkshire had the largest increases in antidepressant prescribing after COVID-19. This cannot be explained by average deprivation alone, but becomes clearer when considering that both regions have the highest concentrations of people living in the most deprived areas. Rural and island boards showed far smaller increases, suggesting that urbanisation and population density played a bigger role than deprivation in driving prescribing changes during COVID.")) 
The table shows that Glasgow and Lanarkshire had the largest increases in antidepressant prescribing after COVID-19. This cannot be explained by average deprivation alone, but becomes clearer when considering that both regions have the highest concentrations of people living in the most deprived areas. Rural and island boards showed far smaller increases, suggesting that urbanisation and population density played a bigger role than deprivation in driving prescribing changes during COVID.
Antidepressant Prescribing Changes by Health Board Before and After COVID-19 (2019-2022)
with deprivation indicators
average total prescriptions
% Change
Deprivation
Pre-COVID (2019) Post-COVID (2022) Avg SIMD Quintile % in Deprived Areas (Q1-Q2)
Greater Glasgow and Clyde
6555083 23757849 262.4 2.70 52.0
Lanarkshire
3666290 13186662 259.7 2.67 51.8
Fife
6681894 7813849 16.9 3.03 39.8
Grampian
7764826 9058806 16.7 3.62 20.6
Western Isles
366503 426735 16.4 2.85 15.1
Highland
4424027 5124922 15.8 3.12 25.5
Lothian
13123200 15122300 15.2 3.40 32.0
Orkney
319190 367197 15.0 3.52 16.3
Dumfries and Galloway
2563265 2936457 14.6 2.94 33.9
Ayrshire and Arran
6720774 7619110 13.4 2.60 52.5
Forth Valley
5275843 5949958 12.8 3.14 36.1
Shetland
305882 344729 12.7 3.52 6.0
Tayside
6709598 7491600 11.7 3.11 34.8
Borders
1992572 2211388 11.0 3.23 21.7
Avg SIMD Quintle 1 represents most deprived areas in scotland

Conclusion This analysis shows that antidepressant prescribing increased across almost all Scottish health boards after COVID-19, with the largest rises seen in Glasgow and Lanarkshire. However, average SIMD quintile did not explain these differences, as no clear deprivation gradient appeared before or after the pandemic Figure 3.

When population-weighted deprivation was included, a clearer pattern emerged: health boards with the highest proportions of residents in the most deprived areas (Q1–Q2) experienced the greatest increases Figure 4. This suggests that COVID-19 may have intensified pre-existing mental health inequalities in large, urban, socioeconomically deprived regions.

This aligns with Figure 2, which shows higher prescribing per head in central Scotland’s densely populated urban belt compared with more rural northern areas, highlighting the influence of population density and urbanisation.

Overall, although prescribing did rise during COVID-19, the trend shown in Figure 1 indicates that this increase was part of a longer-term upward trajectory rather than a sharp pandemic-specific surge.

Limitations Several limitations reduce the strength of these findings. Firstly, the data reflects prescribing volume, not whether the antidepressants were newly started or continued, so it may not directly truly represent true changes in mental health across deprivation levels.In addition, important confounding variables such as changes in healthcare access,remote consultations, and shifting service pressures durung COVID-19 potentially affecting the accuracy of the results.Finally, the analysis was only done at health board level, so findings cannot be generalised to individual gp practice levels so GP practices, and no conclusions can be made about patient-level experiences or need.

Next Steps Future work could be done to link prescribing levels to practice level SIMD and demographic characteristics to better understand drivers of change. Work should be done analysing antidepressant prescriptions all year round and compare it with the winter-only dataset used here, to determine whether truly seasonal peaks exist and whether winter peaks changed post-COVID. Additionally, applying time-series modelling would confirm whether the post COVID rise represents a temporary shock or a long term behavioural shift in prescribing patterns.

References National Records of Scotland (2022). Scottish Census. Scottish Census Web Portal. (https://www.scotlandscensus.gov.uk/webapi/jsf/tableView/tableView.xhtml)(Accessessed: 26 November 2023) Public Health Scotland (2025). Prescriptions in the Community. NHS Scotland Open (https://www.opendata.nhs.scot/dataset/prescriptions-in-the-community)(Accessessed: 26 November 2023) Scottish Government (2020). Scottish Index of Multiple Deprivation 2020v2 data zone lookup file. Scottish Government Supporting Documents. https://www.gov.scot/collections/scottish-index-of-multiple-deprivation-2020/#supportingdocuments(Accessessed: 26 November 2023) UK Government (2025). NHS Health Boards Scotland. Data.gov.uk.https://www.data.gov.uk/dataset/27d0fe5f-79bb-4116-aec9-a8e565ff756a/nhs-health-boards-scotland(Accessessed: 26 November 2023) Rosenthal, M.B. (2004). Seasonal Affective Disorder. In: Encyclopedia of Women’s Health. Springer, Boston, MA. https://doi.org/10.1007/978-0-306-48113-0_391(Accessessed: 26 November 2023)